2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 10:08:05 +02:00
<class name= "Semaphore" inherits= "RefCounted" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2023-04-28 01:35:33 +02:00
A synchronization mechanism used to control access to a shared resource by [Thread]s.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-04-28 01:35:33 +02:00
A synchronization semaphore that can be used to synchronize multiple [Thread]s. Initialized to zero on creation. For a binary version, see [Mutex].
[b]Warning:[/b] Semaphores must be used carefully to avoid deadlocks.
[b]Warning:[/b] To guarantee that the operating system is able to perform proper cleanup (no crashes, no deadlocks), these conditions must be met:
- When a [Semaphore]'s reference count reaches zero and it is therefore destroyed, no threads must be waiting on it.
- When a [Thread]'s reference count reaches zero and it is therefore destroyed, it must not be waiting on any semaphore.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2021-11-15 10:43:07 +01:00
<link title= "Using multiple threads" > $DOCS_URL/tutorials/performance/using_multiple_threads.html</link>
2023-04-28 01:35:33 +02:00
<link title= "Thread-safe APIs" > $DOCS_URL/tutorials/performance/thread_safe_apis.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "post" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2017-09-12 22:42:36 +02:00
<description >
2020-03-03 09:26:42 +01:00
Lowers the [Semaphore], allowing one more thread in.
2017-09-12 22:42:36 +02:00
</description>
</method>
2020-03-09 10:12:53 +01:00
<method name= "try_wait" >
2023-01-27 11:04:41 +01:00
<return type= "bool" />
2020-03-03 09:26:42 +01:00
<description >
2023-01-27 11:04:41 +01: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 09:26:42 +01:00
</description>
</method>
2020-03-09 10:12:53 +01:00
<method name= "wait" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2017-09-12 22:42:36 +02:00
<description >
2020-03-09 10:12:53 +01:00
Waits for the [Semaphore], if its value is zero, blocks until non-zero.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
</class>