1#ifndef Cpl_System_FreeRTOS_Thread_h_
2#define Cpl_System_FreeRTOS_Thread_h_
15#include "colony_config.h"
24#ifndef OPTION_CPL_SYSTEM_FREERTOS_DEFAULT_STACK_SIZE
25#define OPTION_CPL_SYSTEM_FREERTOS_DEFAULT_STACK_SIZE (1024*3)
72 unsigned stackSize = 0
106 static
void entryPoint(
void* data );
130 friend class
Cpl::System::
Tls;
#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
#define OPTION_CPL_SYSTEM_TLS_DESIRED_MIN_INDEXES
This constant defines the DESIRED minimum of number of TLS instances/index.
Definition Tls.h:30
This is a helper class that can be used to make the current thread a CPL thread.
Definition Thread.h:142
void appRun()
This method is called from the run() method.
Definition Thread.h:150
MakeCurrentThreadACplThread(const char *threadName="main")
Converts the native thread to a CPL thread.
Definition Thread.h:155
This concrete class implements a Thread object using FreeRTOS threads.
Definition Thread.h:45
Thread(Runnable &runnable, const char *name, int priority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL, unsigned stackSize=0)
Constructor.
const char * getName() noexcept
See Cpl::System::Thread.
bool isRunning(void) noexcept
See Cpl::System::Thread.
static void makeNativeMainThreadACplThread(void)
This is helper method to 'convert' the first/main FreeRTOS thread to a CPL thread.
size_t getId() noexcept
See Cpl::System::Thread.
Runnable & getRunnable(void) noexcept
See Cpl::System::Thread.
void * m_tlsArray[OPTION_CPL_SYSTEM_TLS_DESIRED_MIN_INDEXES]
Thread Local storage.
Definition Thread.h:57
static void ** getTlsArray() noexcept
Returns access to the TLS key array.
int su_signal(void) noexcept
See Cpl::System::Signable.
Cpl_System_Thread_NativeHdl_T getNativeHandle(void) noexcept
See Cpl::System::Thread.
Cpl::Text::FString< configMAX_TASK_NAME_LEN > m_name
ASCII name of the task.
Definition Thread.h:51
TaskHandle_t m_threadHandle
internal handle
Definition Thread.h:54
int signal(void) noexcept
See Cpl::System::Signable.
Cpl::System::Runnable & m_runnable
Reference to the runnable object for the thread.
Definition Thread.h:48
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This concrete class defines the interface for Thread Local Storage (TLS).
Definition Tls.h:58
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