libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::pthread::ID Class Reference

POSIX thread IDs for comparison of different threads objects. More...

#include <pthread.hxx>

Public Member Functions

 ID (pthread_t id)
 
bool operator== (const ID &other) const
 Compares two thread IDs for equality.
 
bool operator!= (const ID &other) const
 
auto raw () const
 

Protected Attributes

pthread_t m_id
 

Detailed Description

POSIX thread IDs for comparison of different threads objects.

Definition at line 22 of file pthread.hxx.

Constructor & Destructor Documentation

◆ ID()

cosmos::pthread::ID::ID ( pthread_t id)
inlineexplicit

Definition at line 25 of file pthread.hxx.

25: m_id{id} {}

Member Function Documentation

◆ operator!=()

bool cosmos::pthread::ID::operator!= ( const ID & other) const
inline

Definition at line 29 of file pthread.hxx.

29 {
30 return !(*this == other);
31 }

◆ operator==()

bool cosmos::pthread::ID::operator== ( const ID & other) const

Compares two thread IDs for equality.

Definition at line 9 of file pthread.cxx.

9 {
10 return ::pthread_equal(this->m_id, other.m_id) != 0;
11}

◆ raw()

auto cosmos::pthread::ID::raw ( ) const
inline

Definition at line 33 of file pthread.hxx.

33{ return m_id; }

Member Data Documentation

◆ m_id

pthread_t cosmos::pthread::ID::m_id
protected

Definition at line 37 of file pthread.hxx.


The documentation for this class was generated from the following files: