diff options
author | red031000 <rubenru09@aol.com> | 2020-05-03 01:42:55 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-03 01:42:55 +0100 |
commit | 2ee7030776461ee835dbbd44149f90ae79e7d4c5 (patch) | |
tree | 328f97e2272d5c4252ef24943740350bb0a30d32 /arm9/lib/include/OS_spinLock.h | |
parent | bcb2fdcaff094ef3bdb951cdb87eff0739510ade (diff) |
temp OS_entropy
Diffstat (limited to 'arm9/lib/include/OS_spinLock.h')
-rw-r--r-- | arm9/lib/include/OS_spinLock.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arm9/lib/include/OS_spinLock.h b/arm9/lib/include/OS_spinLock.h new file mode 100644 index 00000000..b7f0a571 --- /dev/null +++ b/arm9/lib/include/OS_spinLock.h @@ -0,0 +1,14 @@ +// +// Created by red031000 on 2020-05-03. +// + +#ifndef POKEDIAMOND_OS_SPINLOCK_H +#define POKEDIAMOND_OS_SPINLOCK_H + +typedef volatile struct OSLockWord { + u32 lockFlag; + u16 ownerID; + u16 extension; +} OSLockWord; + +#endif //POKEDIAMOND_OS_SPINLOCK_H |