Preliminary ptrace support.

diff --git a/server/process.c b/server/process.c
index 9f68c2e..17fa8cc 100644
--- a/server/process.c
+++ b/server/process.c
@@ -256,8 +256,7 @@
         struct thread *thread = process->thread_list;
         for (; thread; thread = thread->proc_next)
         {
-            if (!thread->suspend && thread->unix_pid)
-                kill( thread->unix_pid, SIGSTOP );
+            if (!thread->suspend) stop_thread( thread );
         }
     }
 }
@@ -271,8 +270,7 @@
         struct thread *thread = process->thread_list;
         for (; thread; thread = thread->proc_next)
         {
-            if (!thread->suspend && thread->unix_pid)
-                kill( thread->unix_pid, SIGCONT );
+            if (!thread->suspend) continue_thread( thread );
         }
     }
 }
@@ -350,7 +348,7 @@
 {
     struct new_process_request *info;
 
-    if (current->state == STARTING)
+    if (!current->unix_pid)
     {
         fatal_protocol_error( current, "init_process: init_thread not called yet\n" );
         return;