RosettaCodeData/Task/Mutex/PureBasic/mutex-1.basic
2023-07-01 13:44:08 -04:00

5 lines
112 B
Text

MyMutex=CreateMutex()
Result = TryLockMutex(MyMutex)
LockMutex(MyMutex)
UnlockMutex(MyMutex)
FreeMutex(MyMutex)