2#include <sys/syscall.h>
6#include <cosmos/proc/process.hxx>
7#include <cosmos/thread/thread.hxx>
9namespace cosmos::thread {
13 return static_cast<ThreadID
>(syscall(SYS_gettid));
16bool is_main_thread() {
17 return as_pid(get_tid()) == proc::get_own_pid();
ProcessID as_pid(const ThreadID id)
Return the ProcessID representation of the given thread ID.