标签:height tty cpp kth index lock 条件 window try
1. _KWAIT_BLOCK解析
struct _KWAIT_BLOCK {
struct _LIST_ENTRY WaitListEntry; //0x0 同一可等待对象的下一个等待块
struct _KTHREAD* Thread; //0x8 等待线程
VOID* Object; //0xc 可等待对象(进程、线程、事件)
struct _KWAIT_BLOCK* NextWaitBlock; //0x10 等待线程的下一个等待块
USHORT WaitKey; //0x14
等待块索引,第一个为0,第二个为1,.....
U
SHORT WaitType; //0x16 若只有一个可等待对象符合条件就激活线程则为1,全部符合则为0.
};
标签:height tty cpp kth index lock 条件 window try
原文地址:https://www.cnblogs.com/onetrainee/p/12606946.html