Commit 1a45f75d authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add KeEnterCriticalRegion/KeLeaveCriticalRegion stubs.

parent b0a9d16c
......@@ -2304,3 +2304,19 @@ PLIST_ENTRY WINAPI ExfInterlockedRemoveHeadList(PLIST_ENTRY head, PKSPIN_LOCK lo
FIXME("(%p %p) stub\n", head, lock);
return ExInterlockedRemoveHeadList( head, lock );
}
/***********************************************************************
* KeEnterCriticalRegion (NTOSKRNL.EXE.@)
*/
void WINAPI KeEnterCriticalRegion(void)
{
FIXME(": stub\n");
}
/***********************************************************************
* KeLeaveCriticalRegion (NTOSKRNL.EXE.@)
*/
void WINAPI KeLeaveCriticalRegion(void)
{
FIXME(": stub\n");
}
......@@ -523,7 +523,7 @@
@ stub KeDeregisterBugCheckReasonCallback
@ stub KeDetachProcess
@ stub KeDisconnectInterrupt
@ stub KeEnterCriticalRegion
@ stdcall KeEnterCriticalRegion()
@ stub KeEnterKernelDebugger
@ stub KeFindConfigurationEntry
@ stub KeFindConfigurationNextEntry
......@@ -563,7 +563,7 @@
@ stub KeInsertQueueDpc
@ stub KeIsAttachedProcess
@ stub KeIsExecutingDpc
@ stub KeLeaveCriticalRegion
@ stdcall KeLeaveCriticalRegion()
@ stub KeLoaderBlock
@ stub KeNumberProcessors
@ stub KeProfileInterrupt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment