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

OSPri osGetThreadPri(OSThread* thread) {
    if (thread == NULL) {
        thread = __osRunningThread;
    }

    return thread->priority;
}