libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
pthread.hxx
Go to the documentation of this file.
1#pragma once
2
3// POSIX
4#include <pthread.h>
5
6// C
7#include <stdint.h>
8
9// cosmos
10#include <cosmos/dso_export.h>
11#include <cosmos/proc/types.hxx>
12
19namespace cosmos::pthread {
20
22class COSMOS_API ID {
23public: // functions
24
25 explicit ID(pthread_t id) : m_id{id} {}
26
28 bool operator==(const ID &other) const;
29 bool operator!=(const ID &other) const {
30 return !(*this == other);
31 }
32
33 auto raw() const { return m_id; }
34
35protected: // data
36
37 pthread_t m_id;
38};
39
41
46enum class ExitValue : intptr_t {};
47
49enum class ThreadArg : intptr_t {};
50
52ID COSMOS_API get_id();
53
55
60void kill(const ID thread, const Signal sig);
61
63
72[[ noreturn ]] COSMOS_API void exit(const ExitValue val = ExitValue{0});
73
74} // end ns
Represents a POSIX signal number and offers a minimal API around it.
Definition types.hxx:96
POSIX thread IDs for comparison of different threads objects.
Definition pthread.hxx:22
ExitValue
An integer or pointer return value from a pthread.
Definition pthread.hxx:46
ThreadArg
An integer or pointer value supplied to a pthread's entry function.
Definition pthread.hxx:49