3#ifndef IMT_BASE_OS_LINUX_THREAD_H
4#define IMT_BASE_OS_LINUX_THREAD_H
8#include <condition_variable>
83 constexpr std::string
const&
getName() const noexcept {
92 void waitFor(std::chrono::milliseconds
const waitTimeMs);
103 std::string m_threadName;
105 std::function<void()> m_threadFunction;
106 std::unique_ptr<std::thread> m_thread;
108 std::atomic<bool> m_isStopRequested;
110 std::condition_variable m_condition;
Provides a thread instance toghether with the infrastructure required to stop the thread as well as s...
constexpr std::mutex & getMutex() noexcept
Gets the mutex associated with this thread.
Thread & operator=(Thread const &source)=delete
constexpr std::string const & getName() const noexcept
Gets the name of this thread.
bool isStopRequested() const noexcept
Gets whether a stop of the thread is requested.
Thread(std::string const &threadName, ThreadSchedulingParams schedulingParams, std::function< void()> threadFunction) noexcept
Constructor.
Thread(Thread const &source)=delete
Thread(Thread &&source) noexcept=delete
void start()
Starts execution of the thread.
Thread & operator=(Thread &&source) noexcept=delete
constexpr std::condition_variable & getConditionVariable() noexcept
Gets the condition variable associated with this thread.
void waitFor(std::chrono::milliseconds const waitTimeMs)
Lets the current thread wait for the condition variable beeing set or the waitTimeMs to elapse.
void stop() noexcept
Stops execution of the thread.
Provides the parameters required to setup the scheduling of a thread.
This is a application specific file which is used to configure Imt.Base.Core.Math.