pokediamond/arm9/lib/include/OS_spinLock.h
2020-05-03 01:42:55 +01:00

15 lines
256 B
C

//
// 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