1#ifndef Cpl_System_Posix_Thread_h_
2#define Cpl_System_Posix_Thread_h_
75 unsigned stackSize = 0,
76 int schedType = SCHED_OTHER,
77 bool allowSimTicks =
true
110 static
void* entryPoint(
void* data );
#define Cpl_System_Thread_NativeHdl_T
Defer the definition of the native thread handle to the application's 'platform'.
Definition Thread.h:23
#define CPL_SYSTEM_THREAD_PRIORITY_NORMAL
The recommended/default priority for a thread.
Definition Thread.h:30
This concrete class implements a Thread object using Posix threads.
Definition Thread.h:28
bool isRunning(void) noexcept
See Cpl::System::Thread.
Cpl::Text::FString< 64 > m_name
ASCII name of the task.
Definition Thread.h:34
pthread_t m_threadHandle
internal handle
Definition Thread.h:43
Cpl::System::Semaphore m_syncSema
The thread synchronized message semaphore.
Definition Thread.h:46
int signal(void) noexcept
See Cpl::System::Signable.
Cpl::System::Runnable & m_runnable
Reference to the runnable object for the thread.
Definition Thread.h:31
Thread(Runnable &runnable, const char *name, int priority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL, unsigned stackSize=0, int schedType=SCHED_OTHER, bool allowSimTicks=true)
Constructor.
size_t m_threadID
Thread ID.
Definition Thread.h:37
Cpl_System_Thread_NativeHdl_T getNativeHandle(void) noexcept
See Cpl::System::Thread.
int su_signal(void) noexcept
See Cpl::System::Signable.
Runnable & getRunnable(void) noexcept
See Cpl::System::Thread.
bool m_allowSimTicks
Option to allow simulated ticks.
Definition Thread.h:40
size_t getId() noexcept
See Cpl::System::Thread.
const char * getName() noexcept
See Cpl::System::Thread.
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
This semaphore class defines the interface for a Counting Semaphore.
Definition Semaphore.h:37
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This template class represents a NULL terminated string of a specific length.
Definition FString.h:38
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20