RosettaCodeData/Task/Mutex/PureBasic/mutex-1.basic

6 lines
112 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MyMutex=CreateMutex()
Result = TryLockMutex(MyMutex)
LockMutex(MyMutex)
UnlockMutex(MyMutex)
FreeMutex(MyMutex)