summaryrefslogtreecommitdiff
path: root/soh/src/libultra/os/startthread.c
blob: 80d1f256467506d799a46b6549e2273184b7df5c (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
#include "global.h"

void osStartThread(OSThread* thread) {
    register u32 prevInt = __osDisableInt();

    switch (thread->state) {
        case 8:
            thread->state = 2;
            __osEnqueueThread(&__osRunQueue, thread);
            break;
        case 1:
            if (thread->queue == NULL || thread->queue == &__osRunQueue) {
                thread->state = 2;
                __osEnqueueThread(&__osRunQueue, thread);
            } else {
                thread->state = 8;
                __osEnqueueThread(thread->queue, thread);
                __osEnqueueThread(&__osRunQueue, __osPopThread(thread->queue));
            }
            break;
    }

    if (__osRunningThread == NULL) {
        __osDispatchThread();
    } else {
        if (__osRunningThread->priority < __osRunQueue->priority) {
            __osRunningThread->state = 2;
            __osEnqueueAndYield(&__osRunQueue);
        }
    }

    __osRestoreInt(prevInt);
}