blob: a2cdff23e2027f8d4a0310ed0645a74141cfe1a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef POKEDIAMOND_OS_MUTEX_H
#define POKEDIAMOND_OS_MUTEX_H
#include "nitro/types.h"
#include "OS_thread.h"
struct OSMutex {
OSThreadQueue queue;
OSThread *thread;
s32 count;
OSMutexLink link;
};
#endif //POKEDIAMOND_OS_MUTEX_H
|