ntoskrnl.exe: Add stub for KeInitializeSemaphore.
This commit is contained in:
parent
075a1e0e4d
commit
217828978f
|
@ -998,6 +998,15 @@ void WINAPI KeInitializeMutex(PRKMUTEX Mutex, ULONG Level)
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeInitializeSemaphore (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
void WINAPI KeInitializeSemaphore( PRKSEMAPHORE Semaphore, LONG Count, LONG Limit )
|
||||
{
|
||||
FIXME( "(%p %d %d) stub\n", Semaphore , Count, Limit );
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeInitializeSpinLock (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -551,7 +551,7 @@
|
|||
@ stub KeInitializeMutant
|
||||
@ stdcall KeInitializeMutex(ptr long)
|
||||
@ stub KeInitializeQueue
|
||||
@ stub KeInitializeSemaphore
|
||||
@ stdcall KeInitializeSemaphore(ptr long long)
|
||||
@ stdcall KeInitializeSpinLock(ptr)
|
||||
@ stdcall KeInitializeTimer(ptr)
|
||||
@ stdcall KeInitializeTimerEx(ptr long)
|
||||
|
|
|
@ -59,6 +59,11 @@ typedef struct _KEVENT {
|
|||
DISPATCHER_HEADER Header;
|
||||
} KEVENT, *PKEVENT, *RESTRICTED_POINTER PRKEVENT;
|
||||
|
||||
typedef struct _KSEMAPHORE {
|
||||
DISPATCHER_HEADER Header;
|
||||
LONG Limit;
|
||||
} KSEMAPHORE, *PKSEMAPHORE, *PRKSEMAPHORE;
|
||||
|
||||
typedef struct _KDPC {
|
||||
CSHORT Type;
|
||||
UCHAR Number;
|
||||
|
|
Loading…
Reference in New Issue