mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
#ifndef THREAD_H
|
|
#define THREAD_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
#define THREAD_ID_IDLE 1
|
|
#define THREAD_ID_FAULT 2
|
|
#define THREAD_ID_MAIN 3
|
|
#define THREAD_ID_GRAPH 4
|
|
#define THREAD_ID_SCHED 5
|
|
#define THREAD_ID_PADMGR 7
|
|
|
|
#if ENABLE_PROFILER
|
|
#define THREAD_ID_PIMGR 8
|
|
#define THREAD_ID_VIMGR 9
|
|
#else
|
|
// Not sure why these are zero in vanilla.
|
|
#define THREAD_ID_PIMGR 0
|
|
#define THREAD_ID_VIMGR 0
|
|
#endif
|
|
|
|
#define THREAD_ID_N64DD 8
|
|
#define THREAD_ID_DDMSG 9
|
|
#define THREAD_ID_AUDIOMGR 10
|
|
#define THREAD_ID_DMAMGR 18
|
|
#define THREAD_ID_IRQMGR 19
|
|
|
|
#define THREAD_PRI_IDLE_INIT 10
|
|
#define THREAD_PRI_MAIN_INIT 10
|
|
#define THREAD_PRI_DMAMGR_LOW 10 // Used when decompressing files
|
|
#define THREAD_PRI_GRAPH 11
|
|
#define THREAD_PRI_AUDIOMGR 12
|
|
#define THREAD_PRI_N64DD 13
|
|
#define THREAD_PRI_DDMSG 13
|
|
#define THREAD_PRI_PADMGR 14
|
|
#define THREAD_PRI_MAIN 15
|
|
#define THREAD_PRI_SCHED 15
|
|
#define THREAD_PRI_DMAMGR 16
|
|
#define THREAD_PRI_IRQMGR 17
|
|
#define THREAD_PRI_FAULT_CLIENT (OS_PRIORITY_APPMAX - 1)
|
|
#define THREAD_PRI_FAULT OS_PRIORITY_APPMAX
|
|
|
|
#endif
|