mirror of
https://github.com/SantaSpeen/winmutex.git
synced 2026-07-25 08:10:53 +00:00
[+] examples
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from pywinmutex import WindowsMutex
|
||||
|
||||
mutex = WindowsMutex("anidev/pywinmutex/simple", True) # Name may be any string
|
||||
mutex.timeout = 2500 # Set a timeout of 2.5 seconds
|
||||
|
||||
with mutex:
|
||||
print(f"[I] Mutex({mutex}) acquired.")
|
||||
input("Enter to release the mutex and exit> ")
|
||||
|
||||
print(f"[I] Mutex({mutex}) released. Exiting...")
|
||||
Reference in New Issue
Block a user