ntoskrnl.exe: Add stub for KeReleaseSemaphore.
This commit is contained in:
parent
e132820330
commit
d8a12d8374
|
@ -1089,6 +1089,17 @@ void WINAPI KeQueryTickCount( LARGE_INTEGER *count )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeReleaseSemaphore (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
LONG WINAPI KeReleaseSemaphore( PRKSEMAPHORE Semaphore, KPRIORITY Increment,
|
||||
LONG Adjustment, BOOLEAN Wait )
|
||||
{
|
||||
FIXME("(%p %d %d %d) stub\n", Semaphore, Increment, Adjustment, Wait );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeQueryTimeIncrement (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -588,7 +588,7 @@
|
|||
@ stub KeReleaseInterruptSpinLock
|
||||
@ stub KeReleaseMutant
|
||||
@ stub KeReleaseMutex
|
||||
@ stub KeReleaseSemaphore
|
||||
@ stdcall KeReleaseSemaphore(ptr long long long)
|
||||
@ stub KeReleaseSpinLockFromDpcLevel
|
||||
@ stub KeRemoveByKeyDeviceQueue
|
||||
@ stub KeRemoveByKeyDeviceQueueIfBusy
|
||||
|
|
|
@ -1064,6 +1064,7 @@ PKTHREAD WINAPI KeGetCurrentThread(void);
|
|||
void WINAPI KeQuerySystemTime(LARGE_INTEGER*);
|
||||
void WINAPI KeQueryTickCount(LARGE_INTEGER*);
|
||||
ULONG WINAPI KeQueryTimeIncrement(void);
|
||||
LONG WINAPI KeReleaseSemaphore(PRKSEMAPHORE,KPRIORITY,LONG,BOOLEAN);
|
||||
|
||||
PVOID WINAPI MmAllocateContiguousMemory(SIZE_T,PHYSICAL_ADDRESS);
|
||||
PVOID WINAPI MmAllocateNonCachedMemory(SIZE_T);
|
||||
|
|
Loading…
Reference in New Issue