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
c1a042ce
Commit
c1a042ce
authored
Jan 27, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Rename debug_ctx to debug_obj.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
38c49049
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
debugger.c
server/debugger.c
+0
-0
thread.c
server/thread.c
+2
-2
thread.h
server/thread.h
+2
-2
No files found.
server/debugger.c
View file @
c1a042ce
This diff is collapsed.
Click to expand it.
server/thread.c
View file @
c1a042ce
...
...
@@ -221,7 +221,7 @@ static inline void init_thread_structure( struct thread *thread )
thread
->
context
=
NULL
;
thread
->
teb
=
0
;
thread
->
entry_point
=
0
;
thread
->
debug_
ctx
=
NULL
;
thread
->
debug_
obj
=
NULL
;
thread
->
system_regs
=
0
;
thread
->
queue
=
NULL
;
thread
->
wait
=
NULL
;
...
...
@@ -429,7 +429,7 @@ static void destroy_thread( struct object *obj )
struct
thread
*
thread
=
(
struct
thread
*
)
obj
;
assert
(
obj
->
ops
==
&
thread_ops
);
assert
(
!
thread
->
debug_
ctx
);
/* cannot still be debugging something */
assert
(
!
thread
->
debug_
obj
);
/* cannot still be debugging something */
list_remove
(
&
thread
->
entry
);
cleanup_thread
(
thread
);
release_object
(
thread
->
process
);
...
...
server/thread.h
View file @
c1a042ce
...
...
@@ -28,7 +28,7 @@
struct
process
;
struct
thread_wait
;
struct
thread_apc
;
struct
debug_
ctx
;
struct
debug_
obj
;
struct
debug_event
;
struct
msg_queue
;
...
...
@@ -54,7 +54,7 @@ struct thread
struct
process
*
process
;
thread_id_t
id
;
/* thread id */
struct
list
mutex_list
;
/* list of currently owned mutexes */
struct
debug_
ctx
*
debug_ctx
;
/* debugger context if this thread is a debugger */
struct
debug_
obj
*
debug_obj
;
/* debugger context if this thread is a debugger */
unsigned
int
system_regs
;
/* which system regs have been set */
struct
msg_queue
*
queue
;
/* message queue */
struct
thread_wait
*
wait
;
/* current wait condition if sleeping */
...
...
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