mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
f013a028f4
* YAML setup * func_800CDF78_jp * func_800CDEDC_jp * func_800CDCC0_jp * func_800CDE54_jp * func_800CDB10_jp * func_800CDECC_jp * func_800CE04C_jp * func_800CDBE0_jp * func_800CDBF0_jp * func_800CDC10_jp * func_800CDC30_jp * func_800CDDE0_jp * func_800CE090_jp * func_800CE0E8_jp * func_800CE110_jp * Cleanup
29 lines
863 B
C
29 lines
863 B
C
#ifndef M_THREAD_H
|
|
#define M_THREAD_H
|
|
|
|
#define M_THREAD_ID_IDLE 1
|
|
#define M_THREAD_ID_FAULT 2
|
|
#define M_THREAD_ID_MAIN 3
|
|
#define M_THREAD_ID_GRAPH 4
|
|
#define M_THREAD_ID_PADMGR 7
|
|
#define M_THREAD_ID_DMAMGR 8
|
|
#define M_THREAD_ID_IRQMGR 9
|
|
#define M_THREAD_ID_AUDIOMGR 10
|
|
#define M_THREAD_ID_FLASHROM 13
|
|
|
|
#define M_PRIORITY_GRAPH 8
|
|
#define M_PRIORITY_FLASHROM 9
|
|
#define M_PRIORITY_DMAMGR_LOW 10 // Used when decompressing files
|
|
#define M_PRIORITY_AUDIOMGR 11
|
|
#define M_PRIORITY_IDLE 12
|
|
#define M_PRIORITY_MAIN 12
|
|
#define M_PRIORITY_MAIN_HIGH 13
|
|
#define M_PRIORITY_PADMGR 15
|
|
#define M_PRIORITY_DMAMGR 17
|
|
#define M_PRIORITY_SCHED 16
|
|
#define M_PRIORITY_IRQMGR 18
|
|
#define M_PRIORITY_FAULT_CLIENT (OS_PRIORITY_APPMAX - 1)
|
|
#define M_PRIORITY_FAULT OS_PRIORITY_APPMAX
|
|
|
|
#endif
|