22 lines
284 B
C
22 lines
284 B
C
|
|
||
|
#include <winpr/crt.h>
|
||
|
#include <winpr/synch.h>
|
||
|
|
||
|
int TestSynchSemaphore(int argc, char* argv[])
|
||
|
{
|
||
|
HANDLE semaphore;
|
||
|
|
||
|
semaphore = CreateSemaphore(NULL, 0, 1, NULL);
|
||
|
|
||
|
if (!semaphore)
|
||
|
{
|
||
|
printf("CreateSemaphore failure\n");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
CloseHandle(semaphore);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|