mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +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;
|
ULONG SuspendCount;
|
||||||
UCHAR IdealProcessor;
|
UCHAR IdealProcessor;
|
||||||
UCHAR DisableBoost;
|
UCHAR DisableBoost;
|
||||||
|
LIST_ENTRY ProcessThreadListEntry; // Added by Phillip Susi for list of threads in a process
|
||||||
|
|
||||||
/* Provisionally added by David Welch */
|
/* Provisionally added by David Welch */
|
||||||
hal_thread_state Context;
|
hal_thread_state Context;
|
||||||
|
@ -329,6 +330,9 @@ typedef struct _KPROCESS
|
||||||
LIST_ENTRY MemoryAreaList;
|
LIST_ENTRY MemoryAreaList;
|
||||||
HANDLE_TABLE HandleTable;
|
HANDLE_TABLE HandleTable;
|
||||||
LIST_ENTRY ProcessListEntry;
|
LIST_ENTRY ProcessListEntry;
|
||||||
|
|
||||||
|
LIST_ENTRY ThreadListHead; // Added by Phillip Susi for list of threads in process
|
||||||
|
|
||||||
} KPROCESS, *PKPROCESS;
|
} KPROCESS, *PKPROCESS;
|
||||||
|
|
||||||
typedef struct _EPROCESS
|
typedef struct _EPROCESS
|
||||||
|
|
Loading…
Reference in a new issue