summaryrefslogtreecommitdiff
path: root/src/libultra/os/getthreadpri.c
blob: 7ea51bb64884c5e2ca9ae47ce57e0a48d35f257c (plain)
1
2
3
4
5
6
7
8
#include "ultra64.h"

OSPri osGetThreadPri(OSThread* t) {
    if (t == NULL) {
        t = __osRunningThread;
    }
    return t->priority;
}