Add thread stack information to the structure
Todas las comprobaciones han sido exitosas
ci/woodpecker/push/build Pipeline was successful

Este commit está contenido en:
2023-02-15 20:08:19 +01:00
padre 18a39f95bc
commit d28687631b

Ver fichero

@@ -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;