GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions | Static Public Member Functions | Protected Attributes | Friends
Cpl::System::BareMetal::Thread Class Reference

This concrete class implements 'enough' of a Thread object to support Cpl::System framework on a bare metal system (a system that has only ONE thread and potentially ISR contexts). More...

Detailed Description

This concrete class implements 'enough' of a Thread object to support Cpl::System framework on a bare metal system (a system that has only ONE thread and potentially ISR contexts).

#include <Thread.h>

Inheritance diagram for Cpl::System::BareMetal::Thread:
[legend]
Collaboration diagram for Cpl::System::BareMetal::Thread:
[legend]

Public Member Functions

 ~Thread ()
 Destructor.
 
const char * getName () noexcept
 See Cpl::System::Thread.
 
size_t getId () noexcept
 See Cpl::System::Thread.
 
bool isRunning (void) noexcept
 See Cpl::System::Thread.
 
Cpl_System_Thread_NativeHdl_T getNativeHandle (void) noexcept
 See Cpl::System::Thread.
 
RunnablegetRunnable (void) noexcept
 See Cpl::System::Thread.
 
int signal (void) noexcept
 See Cpl::System::Signable.
 
int su_signal (void) noexcept
 See Cpl::System::Signable.
 
 Thread (Cpl::System::Runnable &dummyRunnable)
 COMPONENT Scoped constructor to "convert" the current execution context to a Cpl Thread.
 
- Public Member Functions inherited from Cpl::System::Signable
virtual ~Signable ()
 Virtual destructor.
 
- Public Member Functions inherited from Cpl::Container::Item
bool insert_ (void *newContainerPtr)
 Helper method to trap when inserting an item in multiple containers.
 
bool isInContainer_ (const void *containerPtr) const noexcept
 Returns 'true' if the instance is in the specified container.
 

Static Public Member Functions

static RunnablesetRunnable (Runnable &newRunnableInstance)
 This method allows the application to set the Runnable object for for single-thread/execution context.
 
- Static Public Member Functions inherited from Cpl::System::Thread
static ThreadgetCurrent () noexcept
 This method returns a reference to the currently executing thread.
 
static ThreadtryGetCurrent () 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 RunnablemyRunnable () 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 Threadcreate (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 Public Member Functions inherited from Cpl::Container::Item
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.
 

Protected Attributes

Cpl::System::Runnablem_runnable
 Reference to the runnable object for the thread.
 
Cpl::System::Semaphore m_syncSema
 The thread synchronized message semaphore.
 

Friends

class Cpl::System::Thread
 Housekeeping.
 

Additional Inherited Members

- Public Attributes inherited from Cpl::Container::Item
voidm_nextPtr_
 The link field.
 
voidm_inListPtr_
 Debug field.
 
- Protected Member Functions inherited from Cpl::Container::Item
 Item ()
 Constructor.
 
 Item (const char *)
 Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated.
 

Constructor & Destructor Documentation

◆ ~Thread()

Cpl::System::BareMetal::Thread::~Thread ( )
virtual

Destructor.

Reimplemented from Cpl::System::Thread.

◆ Thread()

COMPONENT Scoped constructor to "convert" the current execution context to a Cpl Thread.

THIS CONSTRUCTOR SHOULD NEVER BE USED BY THE APPLICATION!

Member Function Documentation

◆ getId()

size_t Cpl::System::BareMetal::Thread::getId ( )
virtualnoexcept

◆ getName()

const char * Cpl::System::BareMetal::Thread::getName ( )
virtualnoexcept

◆ getNativeHandle()

Cpl_System_Thread_NativeHdl_T Cpl::System::BareMetal::Thread::getNativeHandle ( void  )
virtualnoexcept

◆ getRunnable()

Runnable & Cpl::System::BareMetal::Thread::getRunnable ( void  )
virtualnoexcept

◆ isRunning()

bool Cpl::System::BareMetal::Thread::isRunning ( void  )
virtualnoexcept

◆ setRunnable()

static Runnable & Cpl::System::BareMetal::Thread::setRunnable ( Runnable newRunnableInstance)
static

This method allows the application to set the Runnable object for for single-thread/execution context.

The method returns a reference to the previous/runnable object being 'replaced'

◆ signal()

int Cpl::System::BareMetal::Thread::signal ( void  )
virtualnoexcept

◆ su_signal()

int Cpl::System::BareMetal::Thread::su_signal ( void  )
virtualnoexcept

Friends And Related Symbol Documentation

◆ Cpl::System::Thread

friend class Cpl::System::Thread
friend

Housekeeping.

Member Data Documentation

◆ m_runnable

Cpl::System::Runnable* Cpl::System::BareMetal::Thread::m_runnable
protected

Reference to the runnable object for the thread.

◆ m_syncSema

Cpl::System::Semaphore Cpl::System::BareMetal::Thread::m_syncSema
protected

The thread synchronized message semaphore.


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