libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
thread.cxx
1// Linux
2#include <sys/syscall.h>
3#include <unistd.h>
4
5// cosmos
6#include <cosmos/proc/process.hxx>
7#include <cosmos/thread/thread.hxx>
8
9namespace cosmos::thread {
10
11ThreadID get_tid() {
12 // glibc doesn't come with a wrapper for this
13 return static_cast<ThreadID>(syscall(SYS_gettid));
14}
15
16bool is_main_thread() {
17 return as_pid(get_tid()) == proc::get_own_pid();
18}
19
20} // end ns
ProcessID as_pid(const ThreadID id)
Return the ProcessID representation of the given thread ID.
Definition thread.hxx:27