blob: 990af1ed46e6a7b6c926705a6bad80d700910784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#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);
}
|