Implement irqmgr

This commit is contained in:
Cuyler36
2023-04-29 08:04:22 -04:00
parent 7581a5c5bd
commit aad0bc2f09
5 changed files with 261 additions and 3 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef LIBULTRA_OS_THREAD_H
#define LIBULTRA_OS_THREAD_H
#include "types.h"
#include "dolphin/os/OSThread.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void osCreateThread2(OSThread* t, int id, void(*entry)(void*), void* arg, void* stack_pointer, size_t stack_size, OSPriority priority);
extern void osStartThread(OSThread* t);
#ifdef __cplusplus
}
#endif
#endif