sm64pc/lib/src/osGetThreadPri.c

11 lines
195 B
C
Raw Permalink Normal View History

2020-05-05 12:15:53 +00:00
#include "libultra_internal.h"
extern OSThread *D_803348A0;
OSPri osGetThreadPri(OSThread *thread) {
if (thread == NULL) {
thread = D_803348A0;
}
return thread->priority;
}