2#include "cosmos/error/ApiError.hxx"
3#include "cosmos/error/errno.hxx"
4#include "cosmos/thread/pthread.hxx"
5#include "cosmos/utils.hxx"
7namespace cosmos::pthread {
10 return ::pthread_equal(this->m_id, other.m_id) != 0;
14 return ID{::pthread_self()};
18void exit(
const ExitValue val) {
19 ::pthread_exit(
reinterpret_cast<void*
>(val));
24void kill(
const ID thread,
const Signal sig) {
25 const auto res = pthread_kill(thread.raw(), to_integral(sig.raw()));
27 if (
const auto error = Errno{res}; error != Errno::NO_ERROR) {
28 cosmos_throw (ApiError(
"pthread_kill()", error));
POSIX thread IDs for comparison of different threads objects.
bool operator==(const ID &other) const
Compares two thread IDs for equality.