summaryrefslogtreecommitdiff
path: root/doc/classes/Mutex.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/Mutex.xml')
-rw-r--r--doc/classes/Mutex.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/classes/Mutex.xml b/doc/classes/Mutex.xml
new file mode 100644
index 0000000000..ef3aeb9e07
--- /dev/null
+++ b/doc/classes/Mutex.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="Mutex" inherits="Reference" category="Core" version="3.0.alpha.custom_build">
+ <brief_description>
+ A synchronization Mutex.
+ </brief_description>
+ <description>
+ A synchronization Mutex. Element used in multi-threadding. Basically a binary [Semaphore]. Guarantees that only one thread has this lock, can be used to protect a critical section.
+ </description>
+ <tutorials>
+ </tutorials>
+ <demos>
+ </demos>
+ <methods>
+ <method name="lock">
+ <return type="void">
+ </return>
+ <description>
+ Lock this [Mutex], blocks until it is unlocked by the current owner.
+ </description>
+ </method>
+ <method name="try_lock">
+ <return type="int" enum="Error">
+ </return>
+ <description>
+ Try locking this [Mutex], does not block. Returns [OK] on success else [ERR_BUSY].
+ </description>
+ </method>
+ <method name="unlock">
+ <return type="void">
+ </return>
+ <description>
+ Unlock this [Mutex], leaving it to others threads.
+ </description>
+ </method>
+ </methods>
+ <constants>
+ </constants>
+</class>