Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
66a819ef
Commit
66a819ef
authored
Mar 03, 2021
by
Paul Gofman
Committed by
Alexandre Julliard
Mar 03, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Print an ERR for assertion exceptions only.
Signed-off-by:
Paul Gofman
<
pgofman@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
225f9eb3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
signal_arm.c
dlls/ntdll/signal_arm.c
+2
-2
signal_arm64.c
dlls/ntdll/signal_arm64.c
+2
-2
signal_i386.c
dlls/ntdll/signal_i386.c
+2
-2
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+2
-2
No files found.
dlls/ntdll/signal_arm.c
View file @
66a819ef
...
...
@@ -174,8 +174,8 @@ NTSTATUS WINAPI KiUserExceptionDispatcher( EXCEPTION_RECORD *rec, CONTEXT *conte
}
else
{
if
(
rec
->
Exception
Flags
&
EH_NONCONTINUABL
E
)
ERR
(
"
Fatal
%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
if
(
rec
->
Exception
Code
==
STATUS_ASSERTION_FAILUR
E
)
ERR
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
else
WARN
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
...
...
dlls/ntdll/signal_arm64.c
View file @
66a819ef
...
...
@@ -515,8 +515,8 @@ NTSTATUS WINAPI KiUserExceptionDispatcher( EXCEPTION_RECORD *rec, CONTEXT *conte
}
else
{
if
(
rec
->
Exception
Flags
&
EH_NONCONTINUABL
E
)
ERR
(
"
Fatal
%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
if
(
rec
->
Exception
Code
==
STATUS_ASSERTION_FAILUR
E
)
ERR
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
else
WARN
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
...
...
dlls/ntdll/signal_i386.c
View file @
66a819ef
...
...
@@ -206,8 +206,8 @@ NTSTATUS WINAPI dispatch_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
}
else
{
if
(
rec
->
Exception
Flags
&
EH_NONCONTINUABL
E
)
ERR
(
"
Fatal
%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
if
(
rec
->
Exception
Code
==
STATUS_ASSERTION_FAILUR
E
)
ERR
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
else
WARN
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
...
...
dlls/ntdll/signal_x86_64.c
View file @
66a819ef
...
...
@@ -552,8 +552,8 @@ NTSTATUS WINAPI dispatch_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
}
else
{
if
(
rec
->
Exception
Flags
&
EH_NONCONTINUABL
E
)
ERR
(
"
Fatal
%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
if
(
rec
->
Exception
Code
==
STATUS_ASSERTION_FAILUR
E
)
ERR
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
else
WARN
(
"%s exception (code=%x) raised
\n
"
,
debugstr_exception_code
(
rec
->
ExceptionCode
),
rec
->
ExceptionCode
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment