10#include <cosmos/thread/pthread.hxx>
11#include <cosmos/time/types.hxx>
63 using Entry = std::function<void (
void)>;
96 explicit PosixThread(Entry entry,
const std::string_view name = {});
98 PosixThread(PosixThread &&other)
noexcept;
100 PosixThread& operator=(PosixThread &&other)
noexcept;
102 virtual ~PosixThread();
106 return m_pthread.has_value();
132 std::optional<pthread::ExitValue> tryJoin();
146 std::optional<pthread::ExitValue> joinTimed(
const RealTime ts);
170 const std::string&
name()
const {
return m_name; }
187 return id() == pthread::get_id();
192 pthread::kill(
id(), sig);
197 std::string buildName(
const std::string_view name,
size_t nr)
const;
199 void assertJoinConditions();
A class representing a basic POSIX thread.
pthread::ID id() const
Returns an opaque thread ID object for the thread represented by this object.
std::optional< pthread_t > m_pthread
POSIX thread handle.
void kill(const Signal sig)
Wrapper around cosmos::pthread::kill().
const std::string & name() const
Returns a friendly name for the thread.
PosixThread() noexcept
Creates an empty thread object.
std::function< pthread::ExitValue(pthread::ThreadArg)> PosixEntry
POSIX style entry function with a single input parameter and return value.
std::function< void(void)> Entry
Entry function without parameters for use with member functions or lambdas.
bool joinable() const
Returns whether a thread is attached to this object (and needs to be joined).
bool isCallerThread() const
Returns whether the caller itself is the associated thread.
std::string m_name
Friendly name of the thread.
Represents a POSIX signal number and offers a minimal API around it.
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
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.