[ros-diffs] [weiden] 40788: Unbreak linking ntoskrnl

weiden at svn.reactos.org weiden at svn.reactos.org
Mon May 4 20:08:22 CEST 2009


Author: weiden
Date: Mon May  4 22:08:21 2009
New Revision: 40788

URL: http://svn.reactos.org/svn/reactos?rev=40788&view=rev
Log:
Unbreak linking ntoskrnl

Modified:
    trunk/reactos/lib/rtl/vectoreh.c

Modified: trunk/reactos/lib/rtl/vectoreh.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/vectoreh.c?rev=40788&r1=40787&r2=40788&view=diff
==============================================================================
--- trunk/reactos/lib/rtl/vectoreh.c [iso-8859-1] (original)
+++ trunk/reactos/lib/rtl/vectoreh.c [iso-8859-1] Mon May  4 22:08:21 2009
@@ -61,7 +61,7 @@
         if (--veh->Refs == 0)
         {
           RemoveEntryList (&veh->ListEntry);
-          InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
+          _InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
           Remove = TRUE;
         }
         Ret = TRUE;
@@ -74,7 +74,7 @@
       {
         CurrentEntry = veh->ListEntry.Flink;
         RemoveEntryList (&veh->ListEntry);
-        InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
+        _InterlockedDecrement (&RtlpVectoredExceptionsInstalled);
         RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
         
         RtlFreeHeap(RtlGetProcessHeap(),
@@ -136,7 +136,7 @@
       InsertTailList(&RtlpVectoredExceptionHead,
                      &veh->ListEntry);
     }
-    InterlockedIncrement (&RtlpVectoredExceptionsInstalled);
+    _InterlockedIncrement (&RtlpVectoredExceptionsInstalled);
     RtlLeaveCriticalSection(&RtlpVectoredExceptionLock);
   }
 



More information about the Ros-diffs mailing list