Implemented GetThreadSelectorEntry through the server.
diff --git a/server/process.c b/server/process.c
index b2743e1..915ecf6 100644
--- a/server/process.c
+++ b/server/process.c
@@ -149,6 +149,8 @@
process->console_out = NULL;
process->init_event = NULL;
process->info = NULL;
+ process->ldt_copy = NULL;
+ process->ldt_flags = NULL;
gettimeofday( &process->start_time, NULL );
if ((process->next = first_process) != NULL) process->next->prev = process;
first_process = process;
@@ -539,6 +541,8 @@
fatal_protocol_error( current, "init_process: called twice\n" );
return;
}
+ current->process->ldt_copy = req->ldt_copy;
+ current->process->ldt_flags = req->ldt_flags;
current->process->info = NULL;
req->start_flags = info->start_flags;
req->hstdin = info->hstdin;