Kernel/IPStack - (minor) TODO retransmit timer
[tpg/acess2.git] / Tools / nativelib / mutex.c
1 /*
2  * Acess2 libnative (Kernel Simulation Library)
3  * - By John Hodge (thePowersGang)
4  *
5  * mutex.c
6  * - Mutex emulation
7  */
8 #include <mutex.h>
9
10
11 // === CODE ===
12 int Mutex_Acquire(tMutex *Mutex)
13 {
14         // TODO: Assert
15         return 0;
16 }
17
18 void Mutex_Release(tMutex *Mutex)
19 {
20         return;
21 }
22

UCC git Repository :: git.ucc.asn.au