Add thread stack information to the structure
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2023-02-15 20:08:19 +01:00
parent 18a39f95bc
commit d28687631b
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

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