mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
changed to use proper type for dispatcher header, instead of PVOID in WAIT_BLOCK
svn path=/trunk/; revision=886
This commit is contained in:
parent
4ce5c9d3b4
commit
683932b845
1 changed files with 3 additions and 1 deletions
|
@ -23,6 +23,8 @@ typedef VOID (*PKKERNEL_ROUTINE)(struct _KAPC* Apc,
|
||||||
|
|
||||||
typedef VOID (*PKRUNDOWN_ROUTINE)(struct _KAPC* Apc);
|
typedef VOID (*PKRUNDOWN_ROUTINE)(struct _KAPC* Apc);
|
||||||
|
|
||||||
|
struct _DISPATCHER_HEADER;
|
||||||
|
|
||||||
typedef struct _KWAIT_BLOCK
|
typedef struct _KWAIT_BLOCK
|
||||||
/*
|
/*
|
||||||
* PURPOSE: Object describing the wait a thread is currently performing
|
* PURPOSE: Object describing the wait a thread is currently performing
|
||||||
|
@ -30,7 +32,7 @@ typedef struct _KWAIT_BLOCK
|
||||||
{
|
{
|
||||||
LIST_ENTRY WaitListEntry;
|
LIST_ENTRY WaitListEntry;
|
||||||
struct _KTHREAD* Thread;
|
struct _KTHREAD* Thread;
|
||||||
PVOID Object;
|
struct _DISPATCHER_HEADER *Object;
|
||||||
struct _KWAIT_BLOCK* NextWaitBlock;
|
struct _KWAIT_BLOCK* NextWaitBlock;
|
||||||
USHORT WaitKey;
|
USHORT WaitKey;
|
||||||
USHORT WaitType;
|
USHORT WaitType;
|
||||||
|
|
Loading…
Reference in a new issue