diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2023-08-24 14:40:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-24 11:40:56 -0700 |
| commit | 94c8f704af3fe2f4849a7f3187d3977ea6c763c5 (patch) | |
| tree | 787e7c909a142a23ea7c5cf4cdbe1dd41994530b /include/m_thread.h | |
| parent | d2ca0a87d8f062e0476bc9fc0c01806fe6a6c02c (diff) | |
`z_std_dma.c` (#75)
* C file
* func_80026A64_jp, DmaMgr_RequestSync
* func_80026714_jp, func_80026814_jp, func_800269E4_jp, func_80026C4C_jp, func_80026DA0_jp, func_80026DCC_jp, func_80026E10_jp
* func_80026770_jp, func_800267DC_jp, func_80026BC0_jp, func_80026C00_jp, func_80026C28_jp
* DmaMgr_DmaRomToRam
* func_800266C4_jp, func_80026828_jp
* func_800263F0_jp
* func_80026CAC_jp
* migrate other strings
* Fix some warnings
* start renamings
* Improve func_800263F0_jp
* steal stuff from OoT
* dmaEntryMsgBufs
* name the remaining stuff
* format
* minor cleanups
* review
* format
* review
Diffstat (limited to 'include/m_thread.h')
| -rw-r--r-- | include/m_thread.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/m_thread.h b/include/m_thread.h index db6ed1b..45cb851 100644 --- a/include/m_thread.h +++ b/include/m_thread.h @@ -1,12 +1,15 @@ #ifndef M_THREAD_H #define M_THREAD_H -#define M_THREAD_ID_IDLE 1 -#define M_THREAD_ID_MAIN 3 +#define M_THREAD_ID_IDLE 1 +#define M_THREAD_ID_MAIN 3 +#define M_THREAD_ID_DMAMGR 8 #define M_THREAD_ID_IRQMGR 9 -#define M_PRIORITY_IDLE 12 -#define M_PRIORITY_MAIN 12 +#define M_PRIORITY_DMAMGR_LOW 10 // Used when decompressing files +#define M_PRIORITY_IDLE 12 +#define M_PRIORITY_MAIN 12 +#define M_PRIORITY_DMAMGR 17 #endif |
