mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Added list of threads in process
svn path=/trunk/; revision=887
This commit is contained in:
parent
683932b845
commit
4e94397e24
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue