36#ifndef IMT_BASE_DFF_RUNTIME_EXECUTABLECONFIGURATION_H
37#define IMT_BASE_DFF_RUNTIME_EXECUTABLECONFIGURATION_H
Optional parameters that can be passed from the active part to the runtime to be considered when crea...
CoreId getCoreAffinity() const
Get the requested core affinity for the executable.
ExecutableConfiguration(char_t const *const pName)
Custom constructor to set the executable name only.
char_t const * getName() const
Get the requested name for the executable.
ExecutableConfiguration()
Default constructor.
ExecutableConfiguration(StackSize const exeStackSize)
Custom constructor to set the stack size only.
size_t getStackSize() const
Get the requested stack size for the executable.
ExecutableConfiguration(CoreAffinity const exeCoreAffinity)
Custom constructor to set the core affinity only.
uint32_t CoreId
A CoreId is used to indicate in which core the executable should run.
uint32_t getTimeSlice() const
Get the requested time slice for the executable.
bool isTimeSliceDefined() const
Returns wether a time slice is defined for the executable.
bool isNameDefined() const
Returns wether a name is defined for the executable.
ExecutableConfiguration(char_t const *const pName, StackSize const exeStackSize, TimeSlice const exeTimeSlice)
Custom constructor to set all configuration parameters.
ExecutableConfiguration(TimeSlice const exeTimeSlice)
Custom constructor to set the time slice only.
bool isStackSizeDefined() const
Returns wether a stack size is defined for the executable.
bool isCoreAffinityDefined() const
Returns whether a core affinity is defined for the executable.
ExecutableConfiguration(char_t const *const pName, StackSize const exeStackSize, TimeSlice const exeTimeSlice, CoreAffinity const exeCoreAffinity)
Custom constructor to set all configuration parameters.
This is a application specific file which is used to configure Imt.Base.Core.Math.
char char_t
The char_t typedef does not indicate size and signedness and is simply included to allow char objects...
unsigned __int32 uint32_t
Data type to pass the core affinity.
uint32_t m_coreId
Indicates the core in which the executable should run.
CoreAffinity()
Default constructor.
bool m_isSet
Indicates if the coreId is set.
CoreAffinity(uint32_t const exeCoreId)
Constructor.
Size type to pass the stack size.
size_t m_units
The stack size in the size unit used by the runtime.
StackSize()
Default constructor.
StackSize(size_t const units)
Constructor.
bool m_isSet
Indicates if the stack size is set.
Size type to pass the time slice.
uint32_t m_units
The time slice in the size unit used by the runtime.
bool m_isSet
Indicates if the time slice is set.
TimeSlice()
Default constructor.
TimeSlice(uint32_t const units)
Constructor.