summaryrefslogtreecommitdiff
path: root/arm7/lib/include/OS_mutex.h
diff options
context:
space:
mode:
authorEgor Ananyin <ananinegor@gmail.com>2020-06-20 11:00:20 +0300
committerEgor Ananyin <ananinegor@gmail.com>2020-06-20 11:00:20 +0300
commit9fba6d2b34c67d4b14bb1a17d0b1d6d5d6d19b08 (patch)
tree4fe4daf2baef42c3954f54db7ebe21294a4ba738 /arm7/lib/include/OS_mutex.h
parentabd2d1e16494867989e710e5235c6425fa4e8c34 (diff)
OS_mutext done!
Diffstat (limited to 'arm7/lib/include/OS_mutex.h')
-rw-r--r--arm7/lib/include/OS_mutex.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arm7/lib/include/OS_mutex.h b/arm7/lib/include/OS_mutex.h
index 216da68c..920d5594 100644
--- a/arm7/lib/include/OS_mutex.h
+++ b/arm7/lib/include/OS_mutex.h
@@ -4,7 +4,11 @@
#include "OS_context.h"
#include "nitro/OS_mutex_shared.h"
+void OSi_DequeueItem(OSThread * thread, OSMutex * mutex);
+void OSi_EnqueueTail(OSThread * thread, OSMutex * mutex);
void OS_InitMutex(OSMutex* mutex);
+void OS_LockMutex(OSMutex* mutex);
+void OS_UnlockMutex(OSMutex* mutex);
void OSi_UnlockAllMutex(OSThread * thread);
#endif //POKEDIAMOND_ARM7_OS_MUTEX_H