diff options
author | Egor Ananyin <ananinegor@gmail.com> | 2020-06-20 09:18:43 +0300 |
---|---|---|
committer | Egor Ananyin <ananinegor@gmail.com> | 2020-06-20 09:18:43 +0300 |
commit | abd2d1e16494867989e710e5235c6425fa4e8c34 (patch) | |
tree | 7eff3e1db566801104a8fc2672bbe57e06f7009e /include/nitro/OS_mutex_shared.h | |
parent | 70556fc300ba85dad248d20b3c79c415e2ef88e5 (diff) | |
parent | 12c17948602bf14535c91c530f214b99863e038e (diff) |
conflicts
Diffstat (limited to 'include/nitro/OS_mutex_shared.h')
-rw-r--r-- | include/nitro/OS_mutex_shared.h | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/include/nitro/OS_mutex_shared.h b/include/nitro/OS_mutex_shared.h index bd181f55..e3c93e47 100644 --- a/include/nitro/OS_mutex_shared.h +++ b/include/nitro/OS_mutex_shared.h @@ -1,8 +1,20 @@ -#ifndef GUARD_OS_SHARED_MUTEX_H -#define GUARD_OS_SHARED_MUTEX_H +/* + * NOTE: + * This file is shared between ARM9 and ARM7 + * DO NOT PUT PROC SPECIFIC CODE IN HERE + * Thank You! + */ + +/* + * DO NOT INCLUDE THIS FILE DIRECTLY + * Include OS_mutex.h from the specific proc's lib + */ + +#ifndef POKEDIAMOND_OS_MUTEX_SHARED_H +#define POKEDIAMOND_OS_MUTEX_SHARED_H -#include "nitro/types.h" #include "nitro/OS_thread_shared.h" +#include "nitro/types.h" struct OSMutex { OSThreadQueue queue; @@ -11,4 +23,4 @@ struct OSMutex { OSMutexLink link; }; -#endif +#endif //POKEDIAMOND_OS_MUTEX_SHARED_H |