ntoskrnl.exe: Add KeEnterCriticalRegion/KeLeaveCriticalRegion stubs.
Signed-off-by: Austin English <austinenglish@gmail.com>
This commit is contained in:
parent
b0a9d16cfb
commit
1a45f75ded
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue