summaryrefslogtreecommitdiff
path: root/doc/classes/Mutex.xml
blob: 3d0c8eb1df516b8c1e2e4b43cb942a04624a7caf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 [code]Mutex[/code], 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 [code]Mutex[/code], does not block. Returns [OK] on success else [ERR_BUSY].
			</description>
		</method>
		<method name="unlock">
			<return type="void">
			</return>
			<description>
				Unlock this [code]Mutex[/code], leaving it to others threads.
			</description>
		</method>
	</methods>
	<constants>
	</constants>
</class>