Added send_thread_signal() function and properly handle errors caused
by the thread having already died when we send it a signal.
Use -1 instead of 0 as invalid Unix pid value.
diff --git a/server/process.c b/server/process.c
index be62975..785c4cb 100644
--- a/server/process.c
+++ b/server/process.c
@@ -969,7 +969,7 @@
/* initialize a new process */
DECL_HANDLER(init_process)
{
- if (!current->unix_pid)
+ if (current->unix_pid == -1)
{
fatal_protocol_error( current, "init_process: init_thread not called yet\n" );
return;