update for HEAD-2003091401
[reactos.git] / ntoskrnl / ke / sem.c
index 922e137..5c2b5ca 100644 (file)
@@ -37,6 +37,9 @@
 
 /* FUNCTIONS *****************************************************************/
 
+/*
+ * @implemented
+ */
 VOID STDCALL 
 KeInitializeSemaphore (PKSEMAPHORE     Semaphore,
                       LONG             Count,
@@ -49,12 +52,18 @@ KeInitializeSemaphore (PKSEMAPHORE  Semaphore,
    Semaphore->Limit=Limit;
 }
 
+/*
+ * @implemented
+ */
 LONG STDCALL 
 KeReadStateSemaphore (PKSEMAPHORE      Semaphore)
 {
    return(Semaphore->Header.SignalState);
 }
 
+/*
+ * @implemented
+ */
 LONG STDCALL 
 KeReleaseSemaphore (PKSEMAPHORE        Semaphore,
                    KPRIORITY   Increment,