libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
pthread.cxx
1// cosmos
2#include "cosmos/error/ApiError.hxx"
3#include "cosmos/error/errno.hxx"
4#include "cosmos/thread/pthread.hxx"
5#include "cosmos/utils.hxx"
6
7namespace cosmos::pthread {
8
9bool ID::operator==(const ID &other) const {
10 return ::pthread_equal(this->m_id, other.m_id) != 0;
11}
12
13ID get_id() {
14 return ID{::pthread_self()};
15}
16
18void exit(const ExitValue val) {
19 ::pthread_exit(reinterpret_cast<void*>(val));
20 // should never happen
21 std::abort();
22}
23
24void kill(const ID thread, const Signal sig) {
25 const auto res = pthread_kill(thread.raw(), to_integral(sig.raw()));
26
27 if (const auto error = Errno{res}; error != Errno::NO_ERROR) {
28 cosmos_throw (ApiError("pthread_kill()", error));
29 }
30}
31
32} // end ns
POSIX thread IDs for comparison of different threads objects.
Definition pthread.hxx:22
bool operator==(const ID &other) const
Compares two thread IDs for equality.
Definition pthread.cxx:9