Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9a1b221e
Commit
9a1b221e
authored
Feb 24, 2003
by
Marcus Meissner
Committed by
Alexandre Julliard
Feb 24, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print out name of float exceptions.
parent
7be7c67c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
winedbg.c
programs/winedbg/winedbg.c
+21
-0
No files found.
programs/winedbg/winedbg.c
View file @
9a1b221e
...
...
@@ -591,6 +591,27 @@ static BOOL DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL
case
EXCEPTION_VM86_PICRETURN
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"PIC return in vm86 mode"
);
break
;
case
EXCEPTION_FLT_DENORMAL_OPERAND
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"denormal float operand"
);
break
;
case
EXCEPTION_FLT_DIVIDE_BY_ZERO
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"divide by zero"
);
break
;
case
EXCEPTION_FLT_INEXACT_RESULT
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"inexact float result"
);
break
;
case
EXCEPTION_FLT_INVALID_OPERATION
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"invalid float operation"
);
break
;
case
EXCEPTION_FLT_OVERFLOW
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"floating pointer overflow"
);
break
;
case
EXCEPTION_FLT_UNDERFLOW
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"floating pointer underflow"
);
break
;
case
EXCEPTION_FLT_STACK_CHECK
:
DEBUG_Printf
(
DBG_CHN_MESG
,
"floating point stack check"
);
break
;
default:
DEBUG_Printf
(
DBG_CHN_MESG
,
"%08lx"
,
rec
->
ExceptionCode
);
break
;
...
...
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