mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
Unbreak linking ntoskrnl
svn path=/trunk/; revision=40788
This commit is contained in:
parent
2e9b52a3a5
commit
1bcad99a07
1 changed files with 3 additions and 3 deletions
|
@ -61,7 +61,7 @@ RtlCallVectoredExceptionHandlers(IN PEXCEPTION_RECORD ExceptionRecord,
|
|||
if (--veh->Refs == 0)
|
||||
{
|
||||
RemoveEntryList (&veh->ListEntry);
|
||||
InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
||||
_InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
||||
Remove = TRUE;
|
||||
}
|
||||
Ret = TRUE;
|
||||
|
@ -74,7 +74,7 @@ RtlCallVectoredExceptionHandlers(IN PEXCEPTION_RECORD ExceptionRecord,
|
|||
{
|
||||
CurrentEntry = veh->ListEntry.Flink;
|
||||
RemoveEntryList (&veh->ListEntry);
|
||||
InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
||||
_InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
|
||||
RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
|
||||
|
||||
RtlFreeHeap(RtlGetProcessHeap(),
|
||||
|
@ -136,7 +136,7 @@ RtlAddVectoredExceptionHandler(IN ULONG FirstHandler,
|
|||
InsertTailList(&RtlpVectoredExceptionHead,
|
||||
&veh->ListEntry);
|
||||
}
|
||||
InterlockedIncrement (&RtlpVectoredExceptionsInstalled);
|
||||
_InterlockedIncrement (&RtlpVectoredExceptionsInstalled);
|
||||
RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue