agb/mgba-test-runner/c/vendor/mgba-util/platform/3ds/threading.h

88 lines
1.8 KiB
C
Raw Normal View History

2021-04-20 07:21:44 +10:00
/* Copyright (c) 2013-2015 Jeffrey Pfau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef N3DS_THREADING_H
#define N3DS_THREADING_H
#include <mgba-util/common.h>
#include <3ds.h>
#include <malloc.h>
#define THREAD_ENTRY void
typedef ThreadFunc ThreadEntry;
typedef LightLock Mutex;
typedef CondVar Condition;
static inline int MutexInit(Mutex* mutex) {
LightLock_Init(mutex);
return 0;
}
static inline int MutexDeinit(Mutex* mutex) {
UNUSED(mutex);
return 0;
}
static inline int MutexLock(Mutex* mutex) {
LightLock_Lock(mutex);
return 0;
}
static inline int MutexTryLock(Mutex* mutex) {
return LightLock_TryLock(mutex);
}
static inline int MutexUnlock(Mutex* mutex) {
LightLock_Unlock(mutex);
return 0;
}
static inline int ConditionInit(Condition* cond) {
CondVar_Init(cond);
return 0;
}
static inline int ConditionDeinit(Condition* cond) {
UNUSED(cond);
return 0;
}
static inline int ConditionWait(Condition* cond, Mutex* mutex) {
CondVar_Wait(cond, mutex);
return 0;
}
static inline int ConditionWaitTimed(Condition* cond, Mutex* mutex, int32_t timeoutMs) {
return CondVar_WaitTimeout(cond, mutex, timeoutMs * 10000000LL);
}
static inline int ConditionWake(Condition* cond) {
CondVar_Signal(cond);
return 0;
}
static inline int ThreadCreate(Thread* thread, ThreadEntry entry, void* context) {
if (!entry || !thread) {
return 1;
}
*thread = threadCreate(entry, context, 0x8000, 0x18, 2, false);
return !*thread;
}
static inline int ThreadJoin(Thread* thread) {
Result res = threadJoin(*thread, U64_MAX);
threadFree(*thread);
return res;
}
static inline void ThreadSetName(const char* name) {
UNUSED(name);
// Unimplemented
}
#endif