Semaphore Objects
Semaphore objects provide a locking and signalling mechanism that allows threads/tasks to coordinate.
If there is an error in one of the object functions, the return values are:
nil
code
- the integer error codemsg
- a string representation of the error (or blank)e.g.
ok,err,msg = semo:wait(50)
-- Return values
-- Timeout: nil, 209, 'OperationTimedOut'
-- Success: true