| Previous | Next
Win32::MutexThis module provides access to Win32 mutex objects, which control access to common resources. The $mut = Win32::Mutex->new( The first argument determines the initial status of the mutex. If Another object constructor for Win32::Mutex is $mut = Win32::Mutex->open( This call creates a new mutex object to access an existing mutex identified by The following methods can be used on Win32::Mutex objects.
$mut->Release( ) Releases ownership of the mutex from the calling process, allowing anyone waiting on the mutex to take ownership.
$mut->wait([timeout]) The Win32::IPC method inherited by this module. Makes the calling process wait for ownership of the mutex object for the number of milliseconds specified by |