server: Move ldt_copy to the init_process_done request and make it a client_ptr_t.
diff --git a/server/protocol.def b/server/protocol.def
index 83fc7b8..e5c9676 100644
--- a/server/protocol.def
+++ b/server/protocol.def
@@ -536,6 +536,7 @@
@REQ(init_process_done)
int gui; /* is it a GUI process? */
mod_handle_t module; /* main module base address */
+ client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
void* entry; /* process entry point */
@END
@@ -548,7 +549,7 @@
void* teb; /* TEB of new thread (in thread address space) */
void* peb; /* address of PEB (in thread address space) */
void* entry; /* thread entry point (in thread address space) */
- void* ldt_copy; /* address of LDT copy (in thread address space) */
+ int unused; /* was: ldt_copy */
int reply_fd; /* fd for reply pipe */
int wait_fd; /* fd for blocking calls pipe */
@REPLY