Files
SpaghettiKart/src/os/osDestroyThread.c
T
Faris Awan 5c23113592 Match/split all of libultra (#23)
* libultra from sm64 integrated; 3 libultra functions matched

* All of libultra done!

authored-by: farisawan-2000 <farisawan.2000@gmail.com>
2021-04-27 22:35:30 -06:00

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);
}