diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-06-20 19:14:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 19:14:29 +0300 |
commit | b1aec20540cd679d0c828a732de918234adf249e (patch) | |
tree | 22da10db05fa06fb03f297e2d77c6c826898acb2 /arm7/lib/include/OS_mutex.h | |
parent | e979db22a66e401b11d7aa0f1c1dcde4f0fef285 (diff) | |
parent | 16b091058e6135f9b7875fcf074d812d610df380 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'arm7/lib/include/OS_mutex.h')
-rw-r--r-- | arm7/lib/include/OS_mutex.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arm7/lib/include/OS_mutex.h b/arm7/lib/include/OS_mutex.h index b41ac9f8..920d5594 100644 --- a/arm7/lib/include/OS_mutex.h +++ b/arm7/lib/include/OS_mutex.h @@ -4,6 +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 |