2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-03-16 23:01:02 +01:00
<class name= "Mutex" inherits= "Reference" version= "3.5" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
A synchronization mutex (mutual exclusion).
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
A synchronization mutex (mutual exclusion). This is used to synchronize multiple [Thread]s, and is equivalent to a binary [Semaphore]. It guarantees that only one thread can ever acquire the lock at a time. A mutex can be used to protect a critical section; however, be careful to avoid deadlocks.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2021-12-10 11:29:38 +01:00
<link > $DOCS_URL/tutorials/performance/threads/using_multiple_threads.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "lock" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2017-09-12 22:42:36 +02:00
<description >
2019-06-22 01:04:47 +02:00
Locks this [Mutex], blocks until it is unlocked by the current owner.
2021-03-03 18:27:09 +01:00
[b]Note:[/b] This function returns without blocking if the thread already has ownership of the mutex.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "try_lock" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Error" />
2017-09-12 22:42:36 +02:00
<description >
2019-06-22 01:04:47 +02:00
Tries locking this [Mutex], but does not block. Returns [constant OK] on success, [constant ERR_BUSY] otherwise.
2021-03-03 18:27:09 +01:00
[b]Note:[/b] This function returns [constant OK] if the thread already has ownership of the mutex.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "unlock" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2017-09-12 22:42:36 +02:00
<description >
2019-06-22 01:04:47 +02:00
Unlocks this [Mutex], leaving it to other threads.
2021-03-03 18:27:09 +01:00
[b]Note:[/b] If a thread called [method lock] or [method try_lock] multiple times while already having ownership of the mutex, it must also call [method unlock] the same number of times in order to unlock it correctly.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>