This concrete class implements a Thread object using Posix threads.
More...
This concrete class implements a Thread object using Posix threads.
#include <Thread.h>
|
static Thread & | getCurrent () noexcept |
| This method returns a reference to the currently executing thread.
|
|
static Thread * | tryGetCurrent () noexcept |
| Special version of getCurrent().
|
|
static void | wait () noexcept |
| This method causes the CURRENT thread to wait until its 'thread semaphore' is signal/set.
|
|
static bool | tryWait () noexcept |
| This method is similar to Semaphore::tryWait(), except that it operates on the thread semaphore.
|
|
static bool | timedWait (unsigned long timeoutInMsec) noexcept |
| Same as wait(), except the call will return after 'timeoutInMsec' has expired without the thread being signaled.
|
|
static const char * | myName () noexcept |
| Returns the name for the current thread (i.e.
|
|
static size_t | myId () noexcept |
| Returns the ID for the current thread (i.e.
|
|
static Runnable & | myRunnable () noexcept |
| This method returns a reference to the current thread' runnable instance.
|
|
static void | traverse (Thread::Traverser &client) noexcept |
| Internal Iterator that allows the Client to traverse the list active threads.
|
|
static Thread * | create (Runnable &runnable, const char *name, int priority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL, int stackSize=0, void *stackPtr=0, bool allowSimTicks=true) |
| This method creates a thread according to the specified parameters.
|
|
static void | destroy (Thread &threadToDestroy) |
| This method is used to destroy a thread that was created by the Thread Factory.
|
|
static void | remove_ (Item *itemPtr) noexcept |
| Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container.
|
|
void * | m_nextPtr_ |
| The link field.
|
|
void * | m_inListPtr_ |
| Debug field.
|
|
| Item () |
| Constructor.
|
|
| Item (const char *) |
| Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
|
|
◆ Thread() [1/2]
Constructor.
o POSIX does not define/require specific Priority values, however
it does define that the priority range must be at 32 and the
a higher numerical value has higher priority... So the priority
values support ONLY a range of 32, with N+1 having a higher
priority than N. At run time, the HIGHEST/LOWEST bounds will be
mapped the actual range defined by the functions:
sched_get_priority_max(), sched_get_priority_min()
o The preferred schedType is SCHED_RR or SCHED_FIFO - BUT these
type require superuser privileges to work. All of us mere
mortals must use SCHED_OTHER. SCHED_OTHER is defined as
"normal scheduling" - what ever that means. The biggest problem
with SCHED_OTHER is that only ONE priority is supported -->BUMMER!
You can still pass different priority values with SCHED_OTHER -
but they will have no effect. The priority values WILL work if
SCHED_RR or SCHED_FIFO is specified.
o Does NOT support the application supplying the stack
memory.
◆ ~Thread()
Cpl::System::Posix::Thread::~Thread |
( |
| ) |
|
|
virtual |
◆ Thread() [2/2]
Private constructor to convert the native Posix thread to a Cpl Thread.
THIS CONSTRUCTOR SHOULD NEVER BE USED BY THE APPLICATION!
◆ getId()
size_t Cpl::System::Posix::Thread::getId |
( |
| ) |
|
|
virtualnoexcept |
◆ getName()
const char * Cpl::System::Posix::Thread::getName |
( |
| ) |
|
|
virtualnoexcept |
◆ getNativeHandle()
◆ getRunnable()
Runnable & Cpl::System::Posix::Thread::getRunnable |
( |
void |
| ) |
|
|
virtualnoexcept |
◆ isRunning()
bool Cpl::System::Posix::Thread::isRunning |
( |
void |
| ) |
|
|
virtualnoexcept |
◆ signal()
int Cpl::System::Posix::Thread::signal |
( |
void |
| ) |
|
|
virtualnoexcept |
◆ su_signal()
int Cpl::System::Posix::Thread::su_signal |
( |
void |
| ) |
|
|
virtualnoexcept |
◆ Cpl::System::Thread
◆ m_allowSimTicks
bool Cpl::System::Posix::Thread::m_allowSimTicks |
|
protected |
Option to allow simulated ticks.
◆ m_name
◆ m_runnable
Reference to the runnable object for the thread.
◆ m_syncSema
The thread synchronized message semaphore.
◆ m_threadHandle
pthread_t Cpl::System::Posix::Thread::m_threadHandle |
|
protected |
◆ m_threadID
size_t Cpl::System::Posix::Thread::m_threadID |
|
protected |
The documentation for this class was generated from the following file: