mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-13 04:26:18 -05:00
19 lines
289 B
C
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
|