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
9c18d92f
Commit
9c18d92f
authored
Aug 30, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Detaching from a process needs to continue all the pending events.
parent
fc635fa8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
17 deletions
+12
-17
debugger.c
server/debugger.c
+12
-17
No files found.
server/debugger.c
View file @
9c18d92f
...
...
@@ -451,7 +451,7 @@ static int debugger_attach( struct process *process, struct thread *debugger )
/* detach a process from a debugger thread (and resume it ?) */
int
debugger_detach
(
struct
process
*
process
,
struct
thread
*
debugger
)
{
struct
debug_event
*
event
;
struct
debug_event
*
event
,
*
next
;
struct
debug_ctx
*
debug_ctx
;
if
(
!
process
->
debugger
||
process
->
debugger
!=
debugger
)
...
...
@@ -464,23 +464,18 @@ int debugger_detach( struct process *process, struct thread *debugger )
/* send continue indication for all events */
debug_ctx
=
debugger
->
debug_ctx
;
/* find the event in the queue
* FIXME: could loop on process' threads and look the debug_event field */
LIST_FOR_EACH_ENTRY
(
event
,
&
debug_ctx
->
event_queue
,
struct
debug_event
,
entry
)
/* free all events from this process */
LIST_FOR_EACH_ENTRY_SAFE
(
event
,
next
,
&
debug_ctx
->
event_queue
,
struct
debug_event
,
entry
)
{
if
(
event
->
state
!=
EVENT_QUEUED
)
continue
;
if
(
event
->
sender
->
process
==
process
)
{
assert
(
event
->
sender
->
debug_event
==
event
);
event
->
status
=
DBG_CONTINUE
;
event
->
state
=
EVENT_CONTINUED
;
wake_up
(
&
event
->
obj
,
0
);
unlink_event
(
debug_ctx
,
event
);
/* from queued debug event */
resume_process
(
process
);
break
;
}
if
(
event
->
sender
->
process
!=
process
)
continue
;
assert
(
event
->
state
!=
EVENT_CONTINUED
);
event
->
status
=
DBG_CONTINUE
;
event
->
state
=
EVENT_CONTINUED
;
wake_up
(
&
event
->
obj
,
0
);
unlink_event
(
debug_ctx
,
event
);
/* from queued debug event */
resume_process
(
process
);
}
/* remove relationships between process and its debugger */
...
...
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