10#include <cosmos/dso_export.h>
11#include <cosmos/proc/types.hxx>
19namespace cosmos::pthread {
25 explicit ID(pthread_t
id) : m_id{
id} {}
28 bool operator==(
const ID &other)
const;
29 bool operator!=(
const ID &other)
const {
30 return !(*
this == other);
33 auto raw()
const {
return m_id; }
52ID COSMOS_API get_id();
60void kill(
const ID thread,
const Signal sig);
72[[ noreturn ]] COSMOS_API
void exit(
const ExitValue val = ExitValue{0});
Represents a POSIX signal number and offers a minimal API around it.
POSIX thread IDs for comparison of different threads objects.
ExitValue
An integer or pointer return value from a pthread.
ThreadArg
An integer or pointer value supplied to a pthread's entry function.