commit | 875c4b3c615e6b83536dc35a67d909f2d23afb2f | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Tue Mar 23 14:09:41 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Mar 23 14:09:41 1999 +0000 |
tree | 54f4978706adc6fc81da378b713d60f1344a4532 | |
parent | ed494ec5398d908ce52e4854f76e4ada7e035335 [diff] [blame] |
Added server pid and tid in init_thread request, and use them in CLIENT_InitThread.
diff --git a/include/server.h b/include/server.h index acc5d37..2acd4b1 100644 --- a/include/server.h +++ b/include/server.h
@@ -97,6 +97,11 @@ { int unix_pid; /* Unix pid of new thread */ }; +struct init_thread_reply +{ + void* pid; /* process id of the new thread's process */ + void* tid; /* thread id of the new thread */ +}; /* Terminate a process */