1#ifndef _ULTRA64_OS_INTERNAL_H_ 2#define _ULTRA64_OS_INTERNAL_H_ 3#include "PR/os_message.h" 4 5/* Internal functions used by the operating system */ 6/* Do not include this header in application code */ 7 8/* Variables */ 9 10//extern u64 osClockRate; 11 12/* Functions */ 13 14/*u32 __osProbeTLB(void *); 15u32 __osDisableInt(void); 16void __osRestoreInt(u32);*/ 17OSThread *__osGetCurrFaultedThread(void); 18 19#endif 20 21