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
1f467ffc
Commit
1f467ffc
authored
Aug 21, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correctly pass the exception to the application when
BreakOnFirstChance is 0.
parent
ef9636c5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
16 deletions
+14
-16
winedbg.c
programs/winedbg/winedbg.c
+14
-16
No files found.
programs/winedbg/winedbg.c
View file @
1f467ffc
...
...
@@ -364,7 +364,6 @@ BOOL DEBUG_Attach(DWORD pid, BOOL cofe, BOOL wfe)
while
(
DEBUG_CurrProcess
&&
WaitForDebugEvent
(
&
de
,
INFINITE
))
{
if
(
DEBUG_HandleDebugEvent
(
&
de
))
break
;
ContinueDebugEvent
(
de
.
dwProcessId
,
de
.
dwThreadId
,
DBG_CONTINUE
);
}
if
(
DEBUG_CurrProcess
)
DEBUG_InteractiveP
=
TRUE
;
}
...
...
@@ -506,7 +505,7 @@ static void DEBUG_ExceptionEpilog(void)
DEBUG_InException
=
FALSE
;
}
static
BOOL
DEBUG_HandleException
(
EXCEPTION_RECORD
*
rec
,
BOOL
first_chance
,
BOOL
force
)
static
DWORD
DEBUG_HandleException
(
EXCEPTION_RECORD
*
rec
,
BOOL
first_chance
,
BOOL
force
)
{
BOOL
is_debug
=
FALSE
;
THREADNAME_INFO
*
pThreadName
;
...
...
@@ -532,13 +531,13 @@ static BOOL DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL
DEBUG_Printf
(
DBG_CHN_MESG
,
"Thread ID=0x%lx renamed using MS VC6 extension (name==
\"
%s
\"
)
\n
"
,
pThread
->
tid
,
pThread
->
name
);
return
FALS
E
;
return
DBG_CONTINU
E
;
}
if
(
first_chance
&&
!
is_debug
&&
!
force
&&
!
DBG_IVAR
(
BreakOnFirstChance
))
{
/* pass exception to program except for debug exceptions */
return
FALSE
;
return
DBG_EXCEPTION_NOT_HANDLED
;
}
if
(
!
is_debug
)
...
...
@@ -596,7 +595,7 @@ static BOOL DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL
if
(
!
DBG_IVAR
(
BreakOnCritSectTimeOut
))
{
DEBUG_Printf
(
DBG_CHN_MESG
,
"
\n
"
);
return
FALSE
;
return
DBG_EXCEPTION_NOT_HANDLED
;
}
break
;
case
EXCEPTION_WINE_STUB
:
...
...
@@ -653,23 +652,23 @@ static BOOL DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL
{
DEBUG_ExceptionProlog
(
is_debug
,
FALSE
,
rec
->
ExceptionCode
);
DEBUG_ExceptionEpilog
();
return
TRUE
;
/* terminate execution */
return
0
;
/* terminate execution */
}
if
(
DEBUG_ExceptionProlog
(
is_debug
,
force
,
rec
->
ExceptionCode
))
{
DEBUG_InteractiveP
=
TRUE
;
return
TRUE
;
return
0
;
}
DEBUG_ExceptionEpilog
();
return
FALS
E
;
return
DBG_CONTINU
E
;
}
static
BOOL
DEBUG_HandleDebugEvent
(
DEBUG_EVENT
*
de
)
{
char
buffer
[
256
];
BOOL
ret
=
FALS
E
;
DWORD
cont
=
DBG_CONTINU
E
;
DEBUG_CurrPid
=
de
->
dwProcessId
;
DEBUG_CurrTid
=
de
->
dwThreadId
;
...
...
@@ -701,10 +700,10 @@ static BOOL DEBUG_HandleDebugEvent(DEBUG_EVENT* de)
if
(
DEBUG_FetchContext
())
{
re
t
=
DEBUG_HandleException
(
&
de
->
u
.
Exception
.
ExceptionRecord
,
con
t
=
DEBUG_HandleException
(
&
de
->
u
.
Exception
.
ExceptionRecord
,
de
->
u
.
Exception
.
dwFirstChance
,
DEBUG_CurrThread
->
wait_for_first_exception
);
if
(
!
re
t
&&
DEBUG_CurrThread
)
if
(
con
t
&&
DEBUG_CurrThread
)
{
DEBUG_CurrThread
->
wait_for_first_exception
=
0
;
SetThreadContext
(
DEBUG_CurrThread
->
handle
,
&
DEBUG_context
);
...
...
@@ -850,7 +849,7 @@ static BOOL DEBUG_HandleDebugEvent(DEBUG_EVENT* de)
{
DEBUG_Printf
(
DBG_CHN_MESG
,
"Stopping on DLL %s loading at %08lx
\n
"
,
buffer
,
(
unsigned
long
)
de
->
u
.
LoadDll
.
lpBaseOfDll
);
ret
=
DEBUG_FetchContext
()
;
if
(
DEBUG_FetchContext
())
cont
=
0
;
}
break
;
...
...
@@ -885,8 +884,9 @@ static BOOL DEBUG_HandleDebugEvent(DEBUG_EVENT* de)
DEBUG_Printf
(
DBG_CHN_TRACE
,
"%08lx:%08lx: unknown event (%ld)
\n
"
,
de
->
dwProcessId
,
de
->
dwThreadId
,
de
->
dwDebugEventCode
);
}
return
ret
;
if
(
!
cont
)
return
TRUE
;
/* stop execution */
ContinueDebugEvent
(
de
->
dwProcessId
,
de
->
dwThreadId
,
cont
);
return
FALSE
;
/* continue execution */
}
static
void
DEBUG_ResumeDebuggee
(
DWORD
cont
)
...
...
@@ -931,7 +931,6 @@ void DEBUG_WaitNextException(DWORD cont, int count, i
while
(
DEBUG_CurrProcess
&&
WaitForDebugEvent
(
&
de
,
INFINITE
))
{
if
(
DEBUG_HandleDebugEvent
(
&
de
))
break
;
ContinueDebugEvent
(
de
.
dwProcessId
,
de
.
dwThreadId
,
DBG_CONTINUE
);
}
if
(
!
DEBUG_CurrProcess
)
return
;
DEBUG_InteractiveP
=
TRUE
;
...
...
@@ -957,7 +956,6 @@ static DWORD DEBUG_MainLoop(void)
while
(
WaitForDebugEvent
(
&
de
,
INFINITE
))
{
if
(
DEBUG_HandleDebugEvent
(
&
de
))
break
;
ContinueDebugEvent
(
de
.
dwProcessId
,
de
.
dwThreadId
,
DBG_CONTINUE
);
}
if
(
local_mode
==
automatic_mode
)
{
...
...
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