mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
20 lines
414 B
C
20 lines
414 B
C
#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);
|
|
extern void osDestroyThread(OSThread* t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|