mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-09 20:18:43 -05:00
15 lines
256 B
C
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
|