2017-07-18 20:17:57 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
2017-07-18 20:51:44 +00:00
|
|
|
* 18.07.2017
|
2017-07-18 20:17:57 +00:00
|
|
|
*
|
|
|
|
* Linux threading wrapper
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2020-02-28 02:38:00 +00:00
|
|
|
#error IS THIS STILL REAL? (February 27th 2020)
|
|
|
|
|
2017-09-10 18:24:26 +00:00
|
|
|
#if !defined(MAC_THREADING_WRAPPER)
|
|
|
|
#define MAC_THREADING_WRAPPER
|
2017-07-18 20:17:57 +00:00
|
|
|
|
|
|
|
#define PLAT_THREAD_SIG(n) void* n(void *ptr)
|
|
|
|
typedef PLAT_THREAD_SIG(Thread_Function);
|
|
|
|
|
|
|
|
union Thread{
|
|
|
|
pthread_t t;
|
|
|
|
FixSize(THREAD_TYPE_SIZE);
|
|
|
|
};
|
|
|
|
|
|
|
|
union Mutex{
|
|
|
|
pthread_mutex_t crit;
|
|
|
|
FixSize(MUTEX_TYPE_SIZE);
|
|
|
|
};
|
|
|
|
|
|
|
|
union Condition_Variable{
|
|
|
|
pthread_cond_t cv;
|
|
|
|
FixSize(CONDITION_VARIABLE_TYPE_SIZE);
|
|
|
|
};
|
|
|
|
|
|
|
|
internal void
|
|
|
|
system_init_and_launch_thread(Thread *t, Thread_Function *proc, void *ptr){
|
|
|
|
pthread_create(&t->t, 0, proc, ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
system_init_lock(Mutex *m){
|
|
|
|
pthread_mutex_init(&m->crit, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
system_acquire_lock(Mutex *m){
|
|
|
|
pthread_mutex_lock(&m->crit);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
system_release_lock(Mutex *m){
|
|
|
|
pthread_mutex_unlock(&m->crit);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
system_init_cv(Condition_Variable *cv){
|
|
|
|
pthread_cond_init(&cv->cv, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
system_wait_cv(Condition_Variable *cv, Mutex *m){
|
|
|
|
pthread_cond_wait(&cv->cv, &m->crit);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
|
|
|
system_signal_cv(Condition_Variable *cv, Mutex *m){
|
|
|
|
pthread_cond_signal(&cv->cv);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|