Convert the global process list to a standard list.
diff --git a/server/process.h b/server/process.h
index cbf41f9..00d935e 100644
--- a/server/process.h
+++ b/server/process.h
@@ -50,8 +50,7 @@
struct process
{
struct object obj; /* object header */
- struct process *next; /* system-wide process list */
- struct process *prev;
+ struct list entry; /* entry in system-wide process list */
struct process *parent; /* parent process */
struct thread *thread_list; /* head of the thread list */
struct thread *debugger; /* thread debugging this process */