$mut = Win32::Mutex->new(init, [name]);
The first argument determines the initial status of the mutex. If
init is nonzero, the calling process has
immediate ownership of the mutex object. A 0 value
means that the mutex is available. The second argument assigns a name
to the mutex that allows this object to be referenced by others via
the open function.