Files
pokediamond/arm9/lib/include/OS_mutex.h
2020-05-18 20:16:42 +01:00

19 lines
289 B
C

//
// Created by red031000 on 2020-05-17.
//
#ifndef POKEDIAMOND_OS_MUTEX_H
#define POKEDIAMOND_OS_MUTEX_H
#include "types.h"
#include "OS_thread.h"
struct OSMutex {
OSThreadQueue queue;
OSThread *thread;
s32 count;
OSMutexLink link;
};
#endif //POKEDIAMOND_OS_MUTEX_H