| Previous | Next
Win32::SemaphoreThe Win32::Semaphore module implements semaphores, synchronizing access to shared resources. The constructor $sem = Win32::Semaphore->new( The arguments are defined as follows:
The $sem = Win32::Semaphore->open( The following methods can be used on Win32::Semaphore objects.
$sem->release(inc, [$var]) Releases a semaphore and increments the count by the amount specified in
$sem->wait([timeout]) The inherited Win32::IPC call. Waits for the semaphore's count to be nonzero, then decrements it. Optional |