branch update for HEAD-2003091401
[reactos.git] / lib / kernel32 / synch / sem.c
index 28f78f1..72bdb45 100644 (file)
@@ -18,6 +18,9 @@
 
 /* FUNCTIONS ****************************************************************/
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 CreateSemaphoreA(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,
                 LONG lInitialCount,
@@ -45,6 +48,9 @@ CreateSemaphoreA(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,
 }
 
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 CreateSemaphoreW(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,
                 LONG lInitialCount,
@@ -97,6 +103,9 @@ CreateSemaphoreW(LPSECURITY_ATTRIBUTES lpSemaphoreAttributes,
 }
 
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 OpenSemaphoreA(DWORD dwDesiredAccess,
               WINBOOL bInheritHandle,
@@ -147,6 +156,9 @@ OpenSemaphoreA(DWORD dwDesiredAccess,
 }
 
 
+/*
+ * @implemented
+ */
 HANDLE STDCALL
 OpenSemaphoreW(DWORD dwDesiredAccess,
               WINBOOL bInheritHandle,
@@ -190,6 +202,9 @@ OpenSemaphoreW(DWORD dwDesiredAccess,
 }
 
 
+/*
+ * @implemented
+ */
 WINBOOL STDCALL
 ReleaseSemaphore(HANDLE hSemaphore,
                 LONG lReleaseCount,