2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-03-01 00:44:37 +00:00
<class name= "Semaphore" inherits= "RefCounted" version= "4.1" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 20:42:36 +00:00
<brief_description >
2019-06-21 23:04:47 +00:00
A synchronization semaphore.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2019-06-21 23:04:47 +00:00
A synchronization semaphore which can be used to synchronize multiple [Thread]s. Initialized to zero on creation. Be careful to avoid deadlocks. For a binary version, see [Mutex].
2023-01-28 12:34:06 +00:00
[b]Warning:[/b]
To guarantee that the operating system is able to perform proper cleanup (no crashes, no deadlocks), these conditions must be met:
- By the time a [Semaphore]'s reference count reaches zero and therefore it is destroyed, no threads must be waiting on it.
- By the time a [Thread]'s reference count reaches zero and therefore it is destroyed, it must not be waiting on any semaphore.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2021-11-15 09:43:07 +00:00
<link title= "Using multiple threads" > $DOCS_URL/tutorials/performance/using_multiple_threads.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<methods >
<method name= "post" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2017-09-12 20:42:36 +00:00
<description >
2020-03-03 08:26:42 +00:00
Lowers the [Semaphore], allowing one more thread in.
2017-09-12 20:42:36 +00:00
</description>
</method>
2020-03-09 09:12:53 +00:00
<method name= "try_wait" >
2023-01-27 10:04:41 +00:00
<return type= "bool" />
2020-03-03 08:26:42 +00:00
<description >
2023-01-27 10:04:41 +00:00
Like [method wait], but won't block, so if the value is zero, fails immediately and returns [code]false[/code]. If non-zero, it returns [code]true[/code] to report success.
2020-03-03 08:26:42 +00:00
</description>
</method>
2020-03-09 09:12:53 +00:00
<method name= "wait" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2017-09-12 20:42:36 +00:00
<description >
2020-03-09 09:12:53 +00:00
Waits for the [Semaphore], if its value is zero, blocks until non-zero.
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
</class>