diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-05-09 12:19:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 12:19:21 -0400 |
commit | 4a32bb288b5af3333a47e33d1ba9a83485ff1052 (patch) | |
tree | bb77ed81792d2e4dfe4370eb45ee0a53a3f02626 /arm9/lib/include/OS_thread.h | |
parent | f76cec09f8a2995244256d4b097d9eed2bebd34a (diff) | |
parent | e660f7a7f749242dc73851d47e806b96783bc47d (diff) |
Merge pull request #65 from PikalaxALT/libfs
Libfs
Diffstat (limited to 'arm9/lib/include/OS_thread.h')
-rw-r--r-- | arm9/lib/include/OS_thread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arm9/lib/include/OS_thread.h b/arm9/lib/include/OS_thread.h index 49ae9f15..15cec0c9 100644 --- a/arm9/lib/include/OS_thread.h +++ b/arm9/lib/include/OS_thread.h @@ -28,6 +28,9 @@ struct _OSThread u8 padding[0x80]; //todo: not the correct size but idfk }; +void OS_SleepThread(OSThreadQueue * queue); +void OS_WakeupThread(OSThreadQueue * queue); + static inline void OS_InitThreadQueue(OSThreadQueue * queue) { queue->head = queue->tail = NULL; |