diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2024-12-26 07:14:55 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-26 08:14:55 -0700 |
| commit | bececbff99bd2bb208a811c100c8f79ebbecc77d (patch) | |
| tree | e2e3e00ac3d9aa866c727197e20c6f6b0201f24b /include/m_thread.h | |
| parent | 60579a4260965c1de2e8a8f320fe9f8c3f5d2dde (diff) | |
main OK (#234)
* main OK
* gSegments -> SegmentBaseAddress
* newline
* format
Diffstat (limited to 'include/m_thread.h')
| -rw-r--r-- | include/m_thread.h | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/include/m_thread.h b/include/m_thread.h index 19f6e1f..0f6936e 100644 --- a/include/m_thread.h +++ b/include/m_thread.h @@ -1,18 +1,26 @@ #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_DMAMGR 8 -#define M_THREAD_ID_IRQMGR 9 +#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_PRIORITY_GRAPH 8 #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 |
