diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-06-20 09:47:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 09:47:54 -0400 |
commit | 01c4d4b1858149c2da1ce76368ac861f16fd066d (patch) | |
tree | 3ada3612a1f13dcb3d8a4c5ac7d211788b4a9197 /arm7/lib/include | |
parent | 12c17948602bf14535c91c530f214b99863e038e (diff) | |
parent | 3e4a9b1e3d8daa07bae5a82a406099c330211075 (diff) |
Merge pull request #180 from Cleverking2003/master
OS_mutex
Diffstat (limited to 'arm7/lib/include')
-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 |