mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-06-14 05:34:41 -04:00
11 lines
216 B
C
11 lines
216 B
C
#include "dolphin/os/OSThread.h"
|
|
#include "libultra/libultra.h"
|
|
#include "libultra/os_thread.h"
|
|
|
|
void osDestroyThread(OSThread *t){
|
|
if(t == NULL){
|
|
t = OSGetCurrentThread();
|
|
}
|
|
|
|
OSCancelThread(t);
|
|
} |