Add KLOCK_QUEUE_HANDLE structure definition
This commit is contained in:
parent
91d65bb937
commit
67496bef28
@ -276,6 +276,13 @@ typedef struct _KSPIN_LOCK_QUEUE
|
|||||||
PKSPIN_LOCK Lock;
|
PKSPIN_LOCK Lock;
|
||||||
} KSPIN_LOCK_QUEUE, *PKSPIN_LOCK_QUEUE;
|
} KSPIN_LOCK_QUEUE, *PKSPIN_LOCK_QUEUE;
|
||||||
|
|
||||||
|
/* Per processor lock queue handle structure definition */
|
||||||
|
typedef struct _KLOCK_QUEUE_HANDLE
|
||||||
|
{
|
||||||
|
KSPIN_LOCK_QUEUE LockQueue;
|
||||||
|
KIRQL OldIrql;
|
||||||
|
} KLOCK_QUEUE_HANDLE, *PKLOCK_QUEUE_HANDLE;
|
||||||
|
|
||||||
/* Queue object structure definition */
|
/* Queue object structure definition */
|
||||||
typedef struct _KQUEUE
|
typedef struct _KQUEUE
|
||||||
{
|
{
|
||||||
|
@ -207,6 +207,7 @@ typedef struct _KDPC_DATA KDPC_DATA, *PKDPC_DATA;
|
|||||||
typedef struct _KERNEL_INITIALIZATION_BLOCK KERNEL_INITIALIZATION_BLOCK, *PKERNEL_INITIALIZATION_BLOCK;
|
typedef struct _KERNEL_INITIALIZATION_BLOCK KERNEL_INITIALIZATION_BLOCK, *PKERNEL_INITIALIZATION_BLOCK;
|
||||||
typedef struct _KEVENT KEVENT, *PKEVENT;
|
typedef struct _KEVENT KEVENT, *PKEVENT;
|
||||||
typedef struct _KGATE KGATE, *PKGATE;
|
typedef struct _KGATE KGATE, *PKGATE;
|
||||||
|
typedef struct _KLOCK_QUEUE_HANDLE KLOCK_QUEUE_HANDLE, *PKLOCK_QUEUE_HANDLE;
|
||||||
typedef struct _KPROCESS KPROCESS, *PKPROCESS;
|
typedef struct _KPROCESS KPROCESS, *PKPROCESS;
|
||||||
typedef struct _KQUEUE KQUEUE, *PKQUEUE;
|
typedef struct _KQUEUE KQUEUE, *PKQUEUE;
|
||||||
typedef struct _KSEMAPHORE KSEMAPHORE, *PKSEMAPHORE;
|
typedef struct _KSEMAPHORE KSEMAPHORE, *PKSEMAPHORE;
|
||||||
|
Loading…
Reference in New Issue
Block a user