mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +00:00
25 lines
602 B
C
25 lines
602 B
C
|
#ifndef _GX_SDK_DEFINES_H
|
||
|
#define _GX_SDK_DEFINES_H
|
||
|
|
||
|
#ifdef GEKKO
|
||
|
|
||
|
#ifndef OSInitMutex
|
||
|
#define OSThread lwp_t
|
||
|
#define OSCond lwpq_t
|
||
|
#define OSThreadQueue lwpq_t
|
||
|
|
||
|
#define OSInitMutex(mutex) LWP_MutexInit(mutex, 0)
|
||
|
|
||
|
#define OSInitCond(cond) LWP_CondInit(cond)
|
||
|
#define OSSignalCond(cond) LWP_ThreadSignal(cond)
|
||
|
|
||
|
#define OSInitThreadQueue(queue) LWP_InitQueue(queue)
|
||
|
#define OSSleepThread(queue) LWP_ThreadSleep(queue)
|
||
|
|
||
|
#define OSCreateThread(thread, func, intarg, ptrarg, stackbase, stacksize, priority, attrs) LWP_CreateThread(thread, func, ptrarg, stackbase, stacksize, priority)
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|