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
5cc97c4e
Commit
5cc97c4e
authored
Apr 10, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Always detach from the thread when we are done with ptrace.
parent
64f17bb3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
ptrace.c
server/ptrace.c
+6
-2
No files found.
server/ptrace.c
View file @
5cc97c4e
...
@@ -274,8 +274,12 @@ void resume_after_ptrace( struct thread *thread )
...
@@ -274,8 +274,12 @@ void resume_after_ptrace( struct thread *thread )
{
{
if
(
thread
->
unix_pid
==
-
1
)
return
;
if
(
thread
->
unix_pid
==
-
1
)
return
;
assert
(
thread
->
attached
);
assert
(
thread
->
attached
);
ptrace
(
get_thread_single_step
(
thread
)
?
PTRACE_SINGLESTEP
:
PTRACE_CONT
,
if
(
ptrace
(
PTRACE_DETACH
,
get_ptrace_pid
(
thread
),
(
caddr_t
)
1
,
0
)
==
-
1
)
get_ptrace_pid
(
thread
),
(
caddr_t
)
1
,
0
/* cancel the SIGSTOP */
);
{
if
(
errno
==
ESRCH
)
thread
->
unix_pid
=
thread
->
unix_tid
=
-
1
;
/* thread got killed */
}
if
(
debug_level
)
fprintf
(
stderr
,
"%04x: *detached*
\n
"
,
thread
->
id
);
thread
->
attached
=
0
;
}
}
/* read an int from a thread address space */
/* read an int from a thread address space */
...
...
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