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

OSId osGetThreadId(OSThread* thread) {
    if (thread == NULL) {
        thread = __osRunningThread;
    }

    return thread->id;
}