mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-06-03 10:32:19 -04:00
5c23113592
* libultra from sm64 integrated; 3 libultra functions matched * All of libultra done! authored-by: farisawan-2000 <farisawan.2000@gmail.com>
38 lines
875 B
C
38 lines
875 B
C
#include "libultra_internal.h"
|
|
|
|
void osDestroyThread(OSThread *thread) {
|
|
register s32 int_disabled;
|
|
register OSThread *s1;
|
|
register OSThread *s2;
|
|
|
|
int_disabled = __osDisableInt();
|
|
|
|
if (thread == NULL) {
|
|
thread = __osRunningThread;
|
|
} else if (thread->state != OS_STATE_STOPPED) {
|
|
__osDequeueThread(thread->queue, thread);
|
|
}
|
|
|
|
if (__osActiveQueue == thread) {
|
|
__osActiveQueue = __osActiveQueue->tlnext;
|
|
} else {
|
|
s1 = __osActiveQueue;
|
|
s2 = s1->tlnext;
|
|
while (s2 != NULL) {
|
|
if (s2 == thread) {
|
|
s1->tlnext = thread->tlnext;
|
|
break;
|
|
} else {
|
|
s1 = s2;
|
|
s2 = s1->tlnext;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (thread == __osRunningThread) {
|
|
__osDispatchThread();
|
|
}
|
|
|
|
__osRestoreInt(int_disabled);
|
|
}
|