[NTOS:MM] Quick fix: use SIZE_T instead of ULONG, because ULONG is 32-bit and on...
[reactos.git] / ntoskrnl / ke / wait.c
index c7bfa3e..ed81484 100644 (file)
@@ -267,6 +267,14 @@ Quickie:
 
 /* PUBLIC FUNCTIONS **********************************************************/
 
+BOOLEAN
+NTAPI
+KeIsWaitListEmpty(IN PVOID Object)
+{
+    UNIMPLEMENTED;
+    return FALSE;
+}
+
 /*
  * @implemented
  */
@@ -600,7 +608,7 @@ KeWaitForMultipleObjects(IN ULONG Count,
     else if (KeGetCurrentIrql() == DISPATCH_LEVEL &&
              (!Timeout || Timeout->QuadPart != 0))
     {
-        /* HACK: tcpip is broken and waits with spinlocks acquired (bug #7129) */
+        /* HACK: tcpip is broken and waits with spinlocks acquired (CORE-6473) */
         DPRINT("%s called at DISPATCH_LEVEL with non-zero timeout!\n",
                __FUNCTION__);
     }