Store the list of loaded dlls in the server, and generate debug events
internally.

diff --git a/server/ptrace.c b/server/ptrace.c
index 7567046..58339f6 100644
--- a/server/ptrace.c
+++ b/server/ptrace.c
@@ -120,15 +120,20 @@
 void detach_thread( struct thread *thread )
 {
     if (!thread->unix_pid) return;
-    kill( thread->unix_pid, SIGTERM );
-    if (thread->suspend + thread->process->suspend) continue_thread( thread );
     if (thread->attached)
     {
-        wait4_thread( thread, SIGTERM );
+        /* make sure it is stopped */
+        if (!(thread->suspend + thread->process->suspend)) stop_thread( thread );
+        kill( thread->unix_pid, SIGTERM );
         if (debug_level) fprintf( stderr, "%08x: *detached*\n", (unsigned int)thread );
         ptrace( PTRACE_DETACH, thread->unix_pid, 1, SIGTERM );
         thread->attached = 0;
     }
+    else
+    {
+        kill( thread->unix_pid, SIGTERM );
+        if (thread->suspend + thread->process->suspend) continue_thread( thread );
+    }
 }
 
 /* stop a thread (at the Unix level) */