libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
thread.hxx
Go to the documentation of this file.
1#pragma once
2
3// cosmos
4#include <cosmos/dso_export.h>
5#include <cosmos/proc/types.hxx>
6#include <cosmos/utils.hxx>
7
15namespace cosmos {
16
17enum class ThreadID : pid_t {
18 SELF = 0
19};
20
22
27inline ProcessID as_pid(const ThreadID id) {
28 return ProcessID{to_integral(id)};
29}
30
31namespace thread {
32
34ThreadID COSMOS_API get_tid();
35
37bool COSMOS_API is_main_thread();
38
39} // end ns
40} // end ns
ProcessID
Definition types.hxx:25
@ SELF
In a number of system calls zero refers to the calling thread.
ProcessID as_pid(const ThreadID id)
Return the ProcessID representation of the given thread ID.
Definition thread.hxx:27