35125a17763117eaa50197c0e5f1ae0c45379e21
[tpg/acess2.git] / Tools / nativelib / threads_int.c
1 /*
2  * Acess2 libnative (Kernel Simulation Library)
3  * - By John Hodge (thePowersGang)
4  *
5  * threads_int.c
6  * - Internal threading functions
7  */
8 #include <stddef.h>
9 #include <stdint.h>
10 #include <acess_logging.h>
11 #include <threads_int.h>
12 #include <pthread_weak.h>
13
14 // === CODE ===
15 void Threads_int_LockMutex(void *Mutex)
16 {
17         if( pthread_mutex_lock )
18         {
19         }
20         else
21         {
22                 
23         }
24 }
25

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