| commit | 73209eb73ef5d4f6cabb889a34c552943f628b37 | [log] [tgz] |
|---|---|---|
| author | Alexandre Julliard <julliard@winehq.org> | Fri Feb 25 19:33:35 2005 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Fri Feb 25 19:33:35 2005 +0000 |
| tree | 2f6a2643e113cb0a888f5903854f16eac7408e9a | |
| parent | 48c0d51dc3ddfa03ecb0109a6610d2746c13e36d [diff] [blame] |
Convert the global thread list to a standard list.
diff --git a/server/thread.h b/server/thread.h index 924c471..a7c544b 100644 --- a/server/thread.h +++ b/server/thread.h
@@ -50,8 +50,7 @@ struct thread { struct object obj; /* object header */ - struct thread *next; /* system-wide thread list */ - struct thread *prev; + struct list entry; /* entry in system-wide thread list */ struct thread *proc_next; /* per-process thread list */ struct thread *proc_prev; struct process *process;