Add thread stack information to the structure

このコミットが含まれているのは:
2023-02-15 20:08:19 +01:00
コミット d28687631b

ファイルの表示

@@ -72,6 +72,10 @@ typedef struct _KPROCESS
/* Thread control block structure definition */ /* Thread control block structure definition */
typedef struct _KTHREAD typedef struct _KTHREAD
{ {
PVOID InitialStack;
PVOID KernelStack;
PVOID StackBase;
PVOID StackLimit;
KAPC_STATE ApcState; KAPC_STATE ApcState;
} KTHREAD, *PKTHREAD; } KTHREAD, *PKTHREAD;