mirror of
https://github.com/n64decomp/sm64
synced 2026-04-24 08:03:40 +00:00
9 lines
172 B
C
9 lines
172 B
C
#include "libultra_internal.h"
|
|
|
|
OSPri osGetThreadPri(OSThread *thread) {
|
|
if (thread == NULL) {
|
|
thread = __osRunningThread;
|
|
}
|
|
return thread->priority;
|
|
}
|