mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-02 07:35:36 -05:00
25 lines
473 B
C
25 lines
473 B
C
/*
|
|
* 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_spinLock.h from the specific proc's lib
|
|
*/
|
|
|
|
#ifndef POKEDIAMOND_OS_SPINLOCK_SHARED_H
|
|
#define POKEDIAMOND_OS_SPINLOCK_SHARED_H
|
|
|
|
#include "nitro/types.h"
|
|
|
|
typedef volatile struct OSLockWord {
|
|
u32 lockFlag;
|
|
u16 ownerID;
|
|
u16 extension;
|
|
} OSLockWord;
|
|
|
|
#endif //POKEDIAMOND_OS_SPINLOCK_SHARED_H
|