Added list of threads in process

svn path=/trunk/; revision=887
This commit is contained in:
Phillip Susi 1999-12-18 07:28:28 +00:00
parent 683932b845
commit 4e94397e24

View file

@ -230,6 +230,7 @@ typedef struct _KTHREAD
ULONG SuspendCount;
UCHAR IdealProcessor;
UCHAR DisableBoost;
LIST_ENTRY ProcessThreadListEntry; // Added by Phillip Susi for list of threads in a process
/* Provisionally added by David Welch */
hal_thread_state Context;
@ -329,6 +330,9 @@ typedef struct _KPROCESS
LIST_ENTRY MemoryAreaList;
HANDLE_TABLE HandleTable;
LIST_ENTRY ProcessListEntry;
LIST_ENTRY ThreadListHead; // Added by Phillip Susi for list of threads in process
} KPROCESS, *PKPROCESS;
typedef struct _EPROCESS