Files

11 lines
189 B
C
Raw Permalink Normal View History

2024-02-14 09:24:31 -06:00
#include "PR/os_internal.h"
#include "osint.h"
2023-10-10 08:23:49 -03:00
2024-02-14 09:24:31 -06:00
OSPri osGetThreadPri(OSThread* thread) {
if (thread == NULL) {
thread = __osRunningThread;
}
return thread->priority;
}