SuperTinyKernel™ RTOS 1.07.x
Lightweight, high-performance, deterministic, bare-metal C++ RTOS for resource-constrained embedded systems. MIT Open Source License.
Loading...
Searching...
No Matches
stk Namespace Reference

Namespace of STK package. More...

Namespaces

namespace  hw
 Hardware Abstraction Layer (HAL) for architecture-specific operations.
namespace  memory
 Memory-related primitives.
namespace  tz
namespace  util
 Internal utility namespace containing data structure helpers (linked lists, etc.) used by the kernel implementation. Not part of the public user API.
namespace  sync
 Synchronization primitives for task coordination and resource protection.
namespace  time
 Time-related primitives.
namespace  interop_c_helper

Classes

class  PlatformArmCortexM
 Concrete implementation of IPlatform driver for the Arm Cortex-M0, M3, M4, M7 processors. More...
struct  FaultContext
 ARMv7-M/ARMv8-M fault context. More...
class  PlatformRiscV
 Concrete implementation of IPlatform driver for the Risc-V processors. More...
class  PlatformContext
 Base platform context for all platform implementations. More...
class  PlatformX86Win32
 Concrete implementation of IPlatform driver for the x86 Win32 platform. More...
class  Kernel
 Concrete implementation of IKernel. More...
class  ArrayView
 Lightweight, non-owning view over a contiguous sequence of elements. More...
class  Stack
 Stack descriptor. More...
class  IStackMemory
 Interface for a stack memory region. More...
class  IWaitObject
 Wait object. More...
class  ITraceable
 Traceable object. More...
class  ISyncObject
 Synchronization object interface. More...
class  IMutex
 Interface for mutex synchronization primitive. More...
class  ITask
 Interface for a user task. More...
class  IKernelTask
 Scheduling-strategy-facing interface for a kernel task slot. More...
class  IPlatform
 Interface for a platform driver. More...
class  ITaskSwitchStrategy
 Interface for a task switching strategy implementation. More...
class  IKernel
 Interface for the implementation of the kernel of the scheduler. It supports Soft and Hard Real-Time modes. More...
class  IKernelService
 Interface for the kernel services exposed to the user processes during run-time when Kernel started scheduling the processes. More...
class  StackMemoryDef
 Stack memory type definition. More...
class  Task
 Partial implementation of the user task. More...
class  TaskW
 Partial implementation of the user task with a compile-time scheduling weight. Use when the kernel is configured with SwitchStrategySmoothWeightedRoundRobin. More...
class  StackMemoryWrapper
 Adapts an externally-owned stack memory array to the IStackMemory interface. More...
class  SyncObjectBase
 Default, storage-owning implementation of ISyncObject. More...
class  SwitchStrategyEDF
 Earliest Deadline First (EDF) scheduling strategy: always selects the runnable task with the least time remaining before its deadline expires. More...
class  SwitchStrategyFixedPriority
 Fixed-priority preemptive scheduling strategy with round-robin arbitration within each priority level. More...
class  SwitchStrategyMonotonic
 Monotonic scheduling strategy: Rate-Monotonic (RM) or Deadline-Monotonic (DM), selected at compile time by the TStrategyType template parameter. More...
class  SchedulabilityCheck
 Utility class providing static methods for Worst-Case Response Time (WCRT) schedulability analysis of a monotonic HRT task set. More...
class  SwitchStrategyRoundRobin
 Round-Robin task-switching strategy: each runnable task receives one time slice (one tick interval) in turn before the kernel moves to the next task. More...
class  SwitchStrategySmoothWeightedRoundRobin
 Smooth Weighted Round-Robin (SWRR) task-switching strategy: distributes CPU time proportionally to per-task weights while avoiding execution bursts by spreading selections evenly over time. More...

Typedefs

typedef PlatformArmCortexM PlatformDefault
 Default platform implementation.
typedef uintptr_t Word
 Native processor word type.
typedef Word TId
 Task (thread) id.
typedef int32_t Timeout
 Timeout time (ticks).
typedef int64_t Ticks
 Ticks value.
typedef int64_t Time
 Time value.
typedef uint64_t Cycles
 Cycles value.
typedef int32_t Weight
 Weight value (aka priority).
typedef SwitchStrategyFixedPriority< 32 > SwitchStrategyFP32
 Shorthand alias for SwitchStrategyFixedPriority<32>: 32 priority levels (0..31), using a single 32-bit m_ready_bitmap for O(1) highest-priority lookup.
typedef SwitchStrategyMonotonic< MSS_TYPE_RATESwitchStrategyRM
 Shorthand alias for SwitchStrategyMonotonic<MSS_TYPE_RATE>: Rate-Monotonic scheduling (shorter scheduling period -> higher priority).
typedef SwitchStrategyMonotonic< MSS_TYPE_DEADLINESwitchStrategyDM
 Shorthand alias for SwitchStrategyMonotonic<MSS_TYPE_DEADLINE>: Deadline-Monotonic scheduling (shorter execution deadline -> higher priority).
typedef SwitchStrategyRoundRobin SwitchStrategyRR
 Shorthand alias for SwitchStrategyRoundRobin.
typedef SwitchStrategySmoothWeightedRoundRobin SwitchStrategySWRR
 Shorthand alias for SwitchStrategySmoothWeightedRoundRobin.

Enumerations

enum  EAccessMode : uint32_t {
  ACCESS_USER = 0 ,
  ACCESS_PRIVILEGED = (1 << 0) ,
  ACCESS_SECURE = (1 << 1)
}
 Hardware access modes by the task. More...
enum  EKernelMode : uint8_t {
  KERNEL_STATIC = (1 << 0) ,
  KERNEL_DYNAMIC = (1 << 1) ,
  KERNEL_HRT = (1 << 2) ,
  KERNEL_SYNC = (1 << 3) ,
  KERNEL_TICKLESS = (1 << 4)
}
 Kernel operating mode. More...
enum  EKernelPanicId : uint32_t {
  KERNEL_PANIC_NONE = 0U ,
  KERNEL_PANIC_SPINLOCK_DEADLOCK = 1U ,
  KERNEL_PANIC_STACK_CORRUPT = 2U ,
  KERNEL_PANIC_ASSERT = 3U ,
  KERNEL_PANIC_HRT_HARD_FAULT = 4U ,
  KERNEL_PANIC_CPU_EXCEPTION = 5U ,
  KERNEL_PANIC_CS_NESTING_OVERFLOW = 6U ,
  KERNEL_PANIC_UNKNOWN_SVC = 7U ,
  KERNEL_PANIC_BAD_STATE = 8U ,
  KERNEL_PANIC_BAD_MODE = 9U ,
  KERNEL_PANIC_BAD_STACK_TYPE = 10U ,
  KERNEL_PANIC_NS_ACCESS = 11U
}
 Identifies the source of a kernel panic. More...
enum  EStackType : uint8_t {
  STACK_USER_TASK = 0 ,
  STACK_SLEEP_TRAP ,
  STACK_EXIT_TRAP
}
 Stack type. More...
enum  EConsts : uint32_t {
  PERIODICITY_MAX = 99000 ,
  PERIODICITY_DEFAULT = 1000 ,
  STACK_SIZE_MIN = (32U)
}
 Constants. More...
enum  ESystemTaskId : uint32_t {
  SYS_TASK_ID_SLEEP = 0xFFFFFFFF ,
  SYS_TASK_ID_EXIT = 0xFFFFFFFE
}
 System task id. More...
enum  ETraceEventId : uint32_t {
  TRACE_EVENT_UNKNOWN = 0 ,
  TRACE_EVENT_SWITCH = 1000 + 1 ,
  TRACE_EVENT_SLEEP = 1000 + 2
}
 Trace event identifiers for tracing task suspension and resume with debugging tools (e.g. SEGGER SystemView). More...
enum  EWaitResult : int8_t {
  WAIT_RESULT_FAIL = -1 ,
  WAIT_RESULT_SIGNAL = 0 ,
  WAIT_RESULT_TIMEOUT = 1
}
 Wait result (see IKernelService::Wait). More...
enum  EHwException : int8_t {
  HW_EXCEPT_FATAL = 0 ,
  HW_EXCEPT_MEMACCESS = 1
}
 Hardware exception id (see IPlatform::IEventOverrider::OnException). More...
enum  EMonotonicSwitchStrategyType {
  MSS_TYPE_RATE ,
  MSS_TYPE_DEADLINE
}
 Policy selector for SwitchStrategyMonotonic: determines the timing attribute used to assign fixed priorities to tasks at AddTask() time. More...

Functions

static __stk_forceinline Cycles ConvertTimeUsToClockCycles (uint32_t clock_freq, Ticks time_us)
 Convert time (microseconds) to core clock cycles.
template<bool TicklessMode>
Timeout GetInitialSleepTicks ()
template<>
Timeout GetInitialSleepTicks< true > ()
template<>
Timeout GetInitialSleepTicks< false > ()
static __stk_forceinline void STK_KERNEL_PANIC (stk::EKernelPanicId id)
 Called when the kernel detects an unrecoverable internal fault.
static constexpr TId GetTidFromUserTask (const ITask *task) noexcept
 Get task identifier from ITask instance.
static constexpr ITaskGetUserTaskFromTid (TId task_id) noexcept
 Get task instance from its identifier.
static bool IsIsrTid (TId id)
 Test whether a task identifier represents an ISR context.
template<typename T>
static constexpr T Min (T a, T b) noexcept
 Compile-time minimum of two values.
template<typename T>
static constexpr T Max (T a, T b) noexcept
 Compile-time maximum of two values.
template<typename T>
static constexpr T Align (T v, T align) noexcept
 Aligns a value towards the next larger size multiple.
template<typename T>
static constexpr T AlignPow2 (T v, T align) noexcept
 Fast compile-time alignment for power-of-two boundaries.
static uint32_t CountLeadingZeros (const uint32_t value) noexcept
 Count leading zeros.
static TId GetTid ()
 Get task/thread Id of the calling task.
static uint32_t GetTickResolution ()
 Get number of microseconds in one tick.
static Time GetMsFromTicks (Ticks tick_count, uint32_t resolution)
 Convert ticks to milliseconds.
static Ticks GetTicksFromMs (Time ms, uint32_t resolution)
 Convert milliseconds to ticks.
static Ticks GetTicksFromMs (Time ms)
 Convert milliseconds to ticks using the current kernel tick resolution.
static Timeout GetTicksFromMsClampedToTimeout (Timeout ms)
 Convert milliseconds to ticks and clamp the result to a Timeout type.
static Ticks GetTicks ()
 Get number of ticks elapsed since kernel start.
static Time GetTimeNowMs ()
 Get current time in milliseconds since kernel start.
static Cycles GetSysTimerCount ()
 Get system timer count value.
static uint32_t GetSysTimerFrequency ()
 Get system timer frequency.
static void Sleep (Timeout tick_count)
 Put calling process into a sleep state.
static void SleepMs (Timeout ms)
 Put calling process into a sleep state.
static bool SleepUntil (Ticks timestamp)
 Put calling process into a sleep state until the specified timestamp.
static void SleepCancel (TId task_id)
 Cancel sleep of the task.
static void Yield ()
 Notify scheduler to switch to the next runnable task.
static void Delay (Timeout tick_count)
 Delay calling process by busy-waiting until the deadline expires.
static void DelayMs (Timeout ms)
 Delay calling process by busy-waiting until the deadline expires.

Variables

static constexpr TId TID_ISR_N = static_cast<TId>(0xFFFFF000U)
 Bitmask sentinel for ISR-context task identifiers.
static constexpr TId TID_NONE = static_cast<TId>(0U)
 Reserved task/thread id representing zero/none thread id.
static constexpr Timeout WAIT_INFINITE = INT32_MAX
 Timeout value: block indefinitely until the synchronization object is signaled.
static constexpr Timeout NO_WAIT = 0
 Timeout value: return immediately if the synchronization object is not yet signaled (non-blocking poll).
static constexpr Weight NO_WEIGHT = -1
 Weight value: weight is not set.
static constexpr Weight DEFAULT_WEIGHT = 1
 Weight value: default weight of value (1) (see SwitchStrategySmoothWeightedRoundRobin).

Detailed Description

Namespace of STK package.

Typedef Documentation

◆ Cycles

typedef uint64_t stk::Cycles

Cycles value.

Definition at line 165 of file stk_common.h.

◆ PlatformDefault

Default platform implementation.

Definition at line 187 of file stk_arch_arm-cortex-m.h.

◆ SwitchStrategyDM

Shorthand alias for SwitchStrategyMonotonic<MSS_TYPE_DEADLINE>: Deadline-Monotonic scheduling (shorter execution deadline -> higher priority).

See also
SwitchStrategyMonotonic, SchedulabilityCheck

Definition at line 518 of file stk_strategy_monotonic.h.

◆ SwitchStrategyFP32

Shorthand alias for SwitchStrategyFixedPriority<32>: 32 priority levels (0..31), using a single 32-bit m_ready_bitmap for O(1) highest-priority lookup.

See also
SwitchStrategyFixedPriority

Definition at line 396 of file stk_strategy_fpriority.h.

◆ SwitchStrategyRM

Shorthand alias for SwitchStrategyMonotonic<MSS_TYPE_RATE>: Rate-Monotonic scheduling (shorter scheduling period -> higher priority).

See also
SwitchStrategyMonotonic, SchedulabilityCheck

Definition at line 511 of file stk_strategy_monotonic.h.

◆ SwitchStrategyRR

◆ SwitchStrategySWRR

◆ Ticks

typedef int64_t stk::Ticks

Ticks value.

Definition at line 155 of file stk_common.h.

◆ TId

typedef Word stk::TId

Task (thread) id.

Definition at line 145 of file stk_common.h.

◆ Time

typedef int64_t stk::Time

Time value.

Definition at line 160 of file stk_common.h.

◆ Timeout

typedef int32_t stk::Timeout

Timeout time (ticks).

Definition at line 150 of file stk_common.h.

◆ Weight

typedef int32_t stk::Weight

Weight value (aka priority).

Definition at line 170 of file stk_common.h.

◆ Word

typedef uintptr_t stk::Word

Native processor word type.

Represents natural data width of the CPU (matching uintptr_t). Used for stack allocation, register storage, pointer value storage, and memory alignment to ensure atomic access, optimal performance, and hardware compatibility.

Definition at line 140 of file stk_common.h.

Enumeration Type Documentation

◆ EAccessMode

enum stk::EAccessMode : uint32_t

Hardware access modes by the task.

Note
Can be used as a bit-field.
Enumerator
ACCESS_USER 

Unprivileged access mode (access to some hardware is restricted, see CPU manual for details). If compiled as ARM TrustZone, this is also a Non-Secure mode.

ACCESS_PRIVILEGED 

Privileged access mode (access to hardware is fully unrestricted).

ACCESS_SECURE 

Secure access mode (ARM TrustZone, Secure binary).

Definition at line 35 of file stk_common.h.

36{
37 ACCESS_USER = 0,
38 ACCESS_PRIVILEGED = (1 << 0),
39 ACCESS_SECURE = (1 << 1),
40};
@ ACCESS_USER
Unprivileged access mode (access to some hardware is restricted, see CPU manual for details)....
Definition stk_common.h:37
@ ACCESS_PRIVILEGED
Privileged access mode (access to hardware is fully unrestricted).
Definition stk_common.h:38
@ ACCESS_SECURE
Secure access mode (ARM TrustZone, Secure binary).
Definition stk_common.h:39

◆ EConsts

enum stk::EConsts : uint32_t

Constants.

Enumerator
PERIODICITY_MAX 

Maximum periodicity (microseconds), 99 milliseconds (note: this value is the highest working on a real hardware and QEMU).

PERIODICITY_DEFAULT 

Default periodicity (microseconds), 1 millisecond.

STACK_SIZE_MIN 

Minimum stack size in elements of Word. Used as a lower bound for all stack allocations (user task, sleep trap, exit trap). See: StackMemoryDef, StackMemoryWrapper.

Definition at line 87 of file stk_common.h.

88{
89 PERIODICITY_MAX = 99000,
90 PERIODICITY_DEFAULT = 1000,
92};
#define STK_STACK_SIZE_MIN
Minimum stack size in elements of Word, shared by all stack allocation lower-bound checks.
Definition stk_defs.h:554
@ PERIODICITY_DEFAULT
Default periodicity (microseconds), 1 millisecond.
Definition stk_common.h:90
@ STACK_SIZE_MIN
Minimum stack size in elements of Word. Used as a lower bound for all stack allocations (user task,...
Definition stk_common.h:91
@ PERIODICITY_MAX
Maximum periodicity (microseconds), 99 milliseconds (note: this value is the highest working on a rea...
Definition stk_common.h:89

◆ EHwException

enum stk::EHwException : int8_t

Hardware exception id (see IPlatform::IEventOverrider::OnException).

Enumerator
HW_EXCEPT_FATAL 

HardFault on ARM / Unhandled Fatal Trap on RISC-V.

HW_EXCEPT_MEMACCESS 

MemManage on ARM / Page Fault or PMP violation on RISC-V.

Definition at line 127 of file stk_common.h.

128{
129 HW_EXCEPT_FATAL = 0,
131};
@ HW_EXCEPT_MEMACCESS
MemManage on ARM / Page Fault or PMP violation on RISC-V.
Definition stk_common.h:130
@ HW_EXCEPT_FATAL
HardFault on ARM / Unhandled Fatal Trap on RISC-V.
Definition stk_common.h:129

◆ EKernelMode

enum stk::EKernelMode : uint8_t

Kernel operating mode.

Enumerator
KERNEL_STATIC 

All tasks are static and can not exit.

KERNEL_DYNAMIC 

Tasks can be added or removed and therefore exit when done.

KERNEL_HRT 

Hard Real-Time (HRT) behavior (tasks are scheduled periodically and have an execution deadline, whole system is failed when task's deadline is failed).

KERNEL_SYNC 

Synchronization support (see Event).

KERNEL_TICKLESS 

Tickless mode. To use this mode STK_TICKLESS_IDLE must be defined to 1 in stk_config.h.

Definition at line 45 of file stk_common.h.

46{
47 KERNEL_STATIC = (1 << 0),
48 KERNEL_DYNAMIC = (1 << 1),
49 KERNEL_HRT = (1 << 2),
50 KERNEL_SYNC = (1 << 3),
51 KERNEL_TICKLESS = (1 << 4),
52};
@ KERNEL_TICKLESS
Tickless mode. To use this mode STK_TICKLESS_IDLE must be defined to 1 in stk_config....
Definition stk_common.h:51
@ KERNEL_SYNC
Synchronization support (see Event).
Definition stk_common.h:50
@ KERNEL_HRT
Hard Real-Time (HRT) behavior (tasks are scheduled periodically and have an execution deadline,...
Definition stk_common.h:49
@ KERNEL_STATIC
All tasks are static and can not exit.
Definition stk_common.h:47
@ KERNEL_DYNAMIC
Tasks can be added or removed and therefore exit when done.
Definition stk_common.h:48

◆ EKernelPanicId

enum stk::EKernelPanicId : uint32_t

Identifies the source of a kernel panic.

Enumerator
KERNEL_PANIC_NONE 

Panic is absent (no fault).

KERNEL_PANIC_SPINLOCK_DEADLOCK 

Spin-lock timeout expired: lock owner never released.

KERNEL_PANIC_STACK_CORRUPT 

Stack integrity check failed.

KERNEL_PANIC_ASSERT 

Internal assertion failed (maps from STK_ASSERT).

KERNEL_PANIC_HRT_HARD_FAULT 

Kernel running in KERNEL_HRT mode reported deadline failure of the task.

KERNEL_PANIC_CPU_EXCEPTION 

CPU reported an exception and halted execution.

KERNEL_PANIC_CS_NESTING_OVERFLOW 

Critical section nesting limit exceeded: violation of STK_CS_NESTINGS_MAX.

KERNEL_PANIC_UNKNOWN_SVC 

Unknown service command received by SVC handler.

KERNEL_PANIC_BAD_STATE 

Kernel entered unexpected (bad) state.

KERNEL_PANIC_BAD_MODE 

Kernel is in bad/unsupported mode for the current operation.

KERNEL_PANIC_BAD_STACK_TYPE 

Stack type is unknown.

KERNEL_PANIC_NS_ACCESS 

Non-secure access to protected resource.

Definition at line 57 of file stk_common.h.

58{
71};
@ KERNEL_PANIC_UNKNOWN_SVC
Unknown service command received by SVC handler.
Definition stk_common.h:66
@ KERNEL_PANIC_BAD_STACK_TYPE
Stack type is unknown.
Definition stk_common.h:69
@ KERNEL_PANIC_NS_ACCESS
Non-secure access to protected resource.
Definition stk_common.h:70
@ KERNEL_PANIC_BAD_MODE
Kernel is in bad/unsupported mode for the current operation.
Definition stk_common.h:68
@ KERNEL_PANIC_HRT_HARD_FAULT
Kernel running in KERNEL_HRT mode reported deadline failure of the task.
Definition stk_common.h:63
@ KERNEL_PANIC_CS_NESTING_OVERFLOW
Critical section nesting limit exceeded: violation of STK_CS_NESTINGS_MAX.
Definition stk_common.h:65
@ KERNEL_PANIC_NONE
Panic is absent (no fault).
Definition stk_common.h:59
@ KERNEL_PANIC_CPU_EXCEPTION
CPU reported an exception and halted execution.
Definition stk_common.h:64
@ KERNEL_PANIC_STACK_CORRUPT
Stack integrity check failed.
Definition stk_common.h:61
@ KERNEL_PANIC_SPINLOCK_DEADLOCK
Spin-lock timeout expired: lock owner never released.
Definition stk_common.h:60
@ KERNEL_PANIC_BAD_STATE
Kernel entered unexpected (bad) state.
Definition stk_common.h:67
@ KERNEL_PANIC_ASSERT
Internal assertion failed (maps from STK_ASSERT).
Definition stk_common.h:62

◆ EMonotonicSwitchStrategyType

Policy selector for SwitchStrategyMonotonic: determines the timing attribute used to assign fixed priorities to tasks at AddTask() time.

Enumerator
MSS_TYPE_RATE 

Rate-Monotonic (RM): shorter scheduling period -> higher priority. Priority is derived from GetHrtPeriodicity() and is fixed at task registration.

MSS_TYPE_DEADLINE 

Deadline-Monotonic (DM): shorter execution deadline -> higher priority. Priority is derived from GetHrtDeadline() and is fixed at task registration.

Definition at line 28 of file stk_strategy_monotonic.h.

29{
32};
@ MSS_TYPE_DEADLINE
Deadline-Monotonic (DM): shorter execution deadline -> higher priority. Priority is derived from GetH...
@ MSS_TYPE_RATE
Rate-Monotonic (RM): shorter scheduling period -> higher priority. Priority is derived from GetHrtPer...

◆ EStackType

enum stk::EStackType : uint8_t

Stack type.

See also
IPlatform::InitStack
Enumerator
STACK_USER_TASK 

Stack of the user task.

STACK_SLEEP_TRAP 

Stack of the Sleep trap.

STACK_EXIT_TRAP 

Stack of the Exit trap.

Definition at line 77 of file stk_common.h.

78{
79 STACK_USER_TASK = 0,
82};
@ STACK_SLEEP_TRAP
Stack of the Sleep trap.
Definition stk_common.h:80
@ STACK_USER_TASK
Stack of the user task.
Definition stk_common.h:79
@ STACK_EXIT_TRAP
Stack of the Exit trap.
Definition stk_common.h:81

◆ ESystemTaskId

enum stk::ESystemTaskId : uint32_t

System task id.

Enumerator
SYS_TASK_ID_SLEEP 

Sleep trap.

SYS_TASK_ID_EXIT 

Exit trap.

Definition at line 97 of file stk_common.h.

98{
99 SYS_TASK_ID_SLEEP = 0xFFFFFFFF,
100 SYS_TASK_ID_EXIT = 0xFFFFFFFE
101};
@ SYS_TASK_ID_EXIT
Exit trap.
Definition stk_common.h:100
@ SYS_TASK_ID_SLEEP
Sleep trap.
Definition stk_common.h:99

◆ ETraceEventId

enum stk::ETraceEventId : uint32_t

Trace event identifiers for tracing task suspension and resume with debugging tools (e.g. SEGGER SystemView).

Note
Values are offset by 1000 to avoid collisions with the host tool's built-in system event range (0–999).
Enumerator
TRACE_EVENT_UNKNOWN 

Unknown / uninitialized trace event.

TRACE_EVENT_SWITCH 

Task context switch event (task became active).

TRACE_EVENT_SLEEP 

Task entered sleep / blocked state.

Definition at line 107 of file stk_common.h.

108{
110 TRACE_EVENT_SWITCH = 1000 + 1,
111 TRACE_EVENT_SLEEP = 1000 + 2
112};
@ TRACE_EVENT_UNKNOWN
Unknown / uninitialized trace event.
Definition stk_common.h:109
@ TRACE_EVENT_SLEEP
Task entered sleep / blocked state.
Definition stk_common.h:111
@ TRACE_EVENT_SWITCH
Task context switch event (task became active).
Definition stk_common.h:110

◆ EWaitResult

enum stk::EWaitResult : int8_t

Wait result (see IKernelService::Wait).

Enumerator
WAIT_RESULT_FAIL 

IKernelService::Wait returned with error without waiting.

WAIT_RESULT_SIGNAL 

The wake was caused by a signal.

WAIT_RESULT_TIMEOUT 

The wake was caused by a timeout expiry.

Definition at line 117 of file stk_common.h.

118{
119 WAIT_RESULT_FAIL = -1,
122};
@ WAIT_RESULT_FAIL
IKernelService::Wait returned with error without waiting.
Definition stk_common.h:119
@ WAIT_RESULT_TIMEOUT
The wake was caused by a timeout expiry.
Definition stk_common.h:121
@ WAIT_RESULT_SIGNAL
The wake was caused by a signal.
Definition stk_common.h:120

Function Documentation

◆ Align()

template<typename T>
constexpr T stk::Align ( T v,
T align )
staticconstexprnoexcept

Aligns a value towards the next larger size multiple.

Note
Arguments are evaluated exactly once, safe for any expression type.

Definition at line 679 of file stk_defs.h.

680{
681 return ((v + align - static_cast<T>(1U)) / align) * align;
682}

◆ AlignPow2()

template<typename T>
constexpr T stk::AlignPow2 ( T v,
T align )
staticconstexprnoexcept

Fast compile-time alignment for power-of-two boundaries.

Note
Arguments are evaluated exactly once. The 'align' parameter MUST be a power of two.

Definition at line 688 of file stk_defs.h.

689{
690 return (v + align - static_cast<T>(1U)) & ~(align - static_cast<T>(1U));
691}

◆ ConvertTimeUsToClockCycles()

__stk_forceinline Cycles stk::ConvertTimeUsToClockCycles ( uint32_t clock_freq,
Ticks time_us )
static

Convert time (microseconds) to core clock cycles.

Parameters
[in]clock_freqClock frequency.
[in]time_usTime (microseconds).
Returns
Clock cycles.

Definition at line 108 of file stk_arch_common.h.

109{
110 return ((static_cast<Cycles>(time_us) * clock_freq) / 1000000ULL);
111}
uint64_t Cycles
Cycles value.
Definition stk_common.h:165

References __stk_forceinline.

◆ CountLeadingZeros()

uint32_t stk::CountLeadingZeros ( const uint32_t value)
inlinestaticnoexcept

Count leading zeros.

Parameters
[in]valueValue must be non 0.
Warning
Undefined behavior if temp_val is 0, but guaranteed safe by upstream checks.

Definition at line 697 of file stk_defs.h.

698{
699 uint32_t ret_val;
700 uint32_t temp_val = value;
701
702#if defined(__GNUC__) || defined(__clang__)
703 ret_val = static_cast<uint32_t>(__builtin_clz(temp_val));
704#elif defined(__ICCARM__)
705 ret_val = static_cast<uint32_t>(__CLZ(temp_val));
706#else
707 uint32_t count = 0U;
708
709 // note: Binary search requires temp_val > 0 to resolve to a max of 31 leading zeros safely.
710 if (temp_val <= 0x0000FFFFU) { count += 16U; temp_val = temp_val << 16U; } else { }
711 if (temp_val <= 0x00FFFFFFU) { count += 8U; temp_val = temp_val << 8U; } else { }
712 if (temp_val <= 0x0FFFFFFFU) { count += 4U; temp_val = temp_val << 4U; } else { }
713 if (temp_val <= 0x3FFFFFFFU) { count += 2U; temp_val = temp_val << 2U; } else { }
714 if (temp_val <= 0x7FFFFFFFU) { count += 1U; } else { }
715
716 ret_val = count;
717#endif
718
719 return ret_val;
720}

References __stk_forceinline.

Referenced by stk::SwitchStrategyFixedPriority< 32 >::GetHighestReadyPriority().

Here is the caller graph for this function:

◆ Delay()

void stk::Delay ( Timeout tick_count)
inlinestatic

Delay calling process by busy-waiting until the deadline expires.

Note
Unlike Sleep this function delays code execution by spinning in a loop until deadline expiry.
Use with care in HRT mode to avoid missed deadline (see stk::KERNEL_HRT, ITask::OnDeadlineMissed).
Parameters
[in]tick_countDelay time (in ticks). Negative will cause an assertion.
Warning
ISR-unsafe. Calling from an ISR context is not permitted and will trigger an assertion.

Definition at line 507 of file stk_helper.h.

508{
509 IKernelService::GetInstance()->Delay(tick_count);
510}
static IKernelService * GetInstance()
Get CPU-local instance of the kernel service.
virtual void Delay(Timeout ticks)=0
Delay calling process.

References __stk_forceinline, stk::IKernelService::Delay(), and stk::IKernelService::GetInstance().

Referenced by DelayMs(), and stk_delay().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ DelayMs()

void stk::DelayMs ( Timeout ms)
inlinestatic

Delay calling process by busy-waiting until the deadline expires.

Note
Unlike Sleep this function delays code execution by spinning in a loop until deadline expiry.
Use with care in HRT mode to avoid missed deadline (see stk::KERNEL_HRT, ITask::OnDeadlineMissed).
Parameters
[in]msDelay time (milliseconds). Negative will cause an assertion.
Warning
ISR-unsafe. Calling from an ISR context is not permitted and will trigger an assertion.

Definition at line 518 of file stk_helper.h.

519{
521}
static void Delay(Timeout tick_count)
Delay calling process by busy-waiting until the deadline expires.
Definition stk_helper.h:507
static Timeout GetTicksFromMsClampedToTimeout(Timeout ms)
Convert milliseconds to ticks and clamp the result to a Timeout type.
Definition stk_helper.h:392

References __stk_forceinline, Delay(), and GetTicksFromMsClampedToTimeout().

Referenced by stk_delay_ms().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetInitialSleepTicks()

template<bool TicklessMode>
Timeout stk::GetInitialSleepTicks ( )
inline

◆ GetInitialSleepTicks< false >()

template<>
Timeout stk::GetInitialSleepTicks< false > ( )
inline

Definition at line 40 of file stk.h.

40{ return 1; }

References __stk_forceinline.

◆ GetInitialSleepTicks< true >()

template<>
Timeout stk::GetInitialSleepTicks< true > ( )
inline

Definition at line 39 of file stk.h.

39{ return STK_TICKLESS_TICKS_MAX; }
#define STK_TICKLESS_TICKS_MAX
Maximum number of kernel ticks the hardware timer may be suppressed in one tickless idle interval whe...
Definition stk_defs.h:77

References __stk_forceinline, and STK_TICKLESS_TICKS_MAX.

◆ GetMsFromTicks()

Time stk::GetMsFromTicks ( Ticks tick_count,
uint32_t resolution )
inlinestatic

Convert ticks to milliseconds.

Parameters
[in]tick_countTick count to convert.
[in]resolutionMicroseconds per tick, as returned by IKernelService::GetTickResolution().
Returns
Equivalent time in milliseconds.
Note
ISR-safe (performs only arithmetic, no kernel calls).

Definition at line 352 of file stk_helper.h.

353{
354 return static_cast<Time>((tick_count * static_cast<Time>(resolution)) / 1000LL);
355}
int64_t Time
Time value.
Definition stk_common.h:160

References __stk_forceinline.

◆ GetSysTimerCount()

Cycles stk::GetSysTimerCount ( )
inlinestatic

Get system timer count value.

Note
ISR-safe.
Returns
64-bit count value.

Definition at line 432 of file stk_helper.h.

433{
435}
virtual Cycles GetSysTimerCount() const =0
Get system timer count value.

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::GetSysTimerCount().

Referenced by osKernelGetSysTimerCount(), osKernelGetSysTimerCount64(), and stk_sys_timer_count().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetSysTimerFrequency()

uint32_t stk::GetSysTimerFrequency ( )
inlinestatic

Get system timer frequency.

Note
ISR-safe.
Returns
Frequency (Hz).

Definition at line 441 of file stk_helper.h.

442{
444}
virtual uint32_t GetSysTimerFrequency() const =0
Get system timer frequency.

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::GetSysTimerFrequency().

Referenced by osKernelGetSysTimerFreq(), and stk_sys_timer_frequency().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetTickResolution()

uint32_t stk::GetTickResolution ( )
inlinestatic

Get number of microseconds in one tick.

Note
Tick is a periodicity of the system timer expressed in microseconds.
ISR-safe.
Returns
Microseconds in one tick.

Definition at line 341 of file stk_helper.h.

342{
344}
virtual uint32_t GetTickResolution() const =0
Get number of microseconds in one tick.

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::GetTickResolution().

Referenced by GetTicksFromMs(), osKernelGetTickFreq(), stk_tick_resolution(), and stk_ticks_from_ms().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetTicks()

◆ GetTicksFromMs() [1/2]

Ticks stk::GetTicksFromMs ( Time ms)
inlinestatic

Convert milliseconds to ticks using the current kernel tick resolution.

Parameters
[in]msTime in milliseconds to convert.
Returns
Equivalent tick count.
Note
Convenience overload that queries GetTickResolution() automatically. Use the two-argument form GetTicksFromMsec(ms, resolution) in ISR context.
Warning
ISR-unsafe (internally calls GetTickResolution() which accesses the kernel service).

Definition at line 382 of file stk_helper.h.

383{
384 return GetTicksFromMs(ms, GetTickResolution());
385}
static Ticks GetTicksFromMs(Time ms, uint32_t resolution)
Convert milliseconds to ticks.
Definition stk_helper.h:363
static uint32_t GetTickResolution()
Get number of microseconds in one tick.
Definition stk_helper.h:341

References __stk_forceinline, GetTickResolution(), and GetTicksFromMs().

Here is the call graph for this function:

◆ GetTicksFromMs() [2/2]

Ticks stk::GetTicksFromMs ( Time ms,
uint32_t resolution )
inlinestatic

Convert milliseconds to ticks.

Parameters
[in]msTime in milliseconds to convert.
[in]resolutionMicroseconds per tick, as returned by IKernelService::GetTickResolution().
Returns
Equivalent tick count.
Note
ISR-safe (performs only arithmetic, no kernel calls).

Definition at line 363 of file stk_helper.h.

364{
365 Ticks tick_count = 0LL;
366
367 if (resolution != 0U)
368 {
369 tick_count = static_cast<Ticks>((ms * 1000LL) / static_cast<Time>(resolution));
370 }
371
372 return tick_count;
373}
int64_t Ticks
Ticks value.
Definition stk_common.h:155

References __stk_forceinline.

Referenced by GetTicksFromMs(), and GetTicksFromMsClampedToTimeout().

Here is the caller graph for this function:

◆ GetTicksFromMsClampedToTimeout()

Timeout stk::GetTicksFromMsClampedToTimeout ( Timeout ms)
inlinestatic

Convert milliseconds to ticks and clamp the result to a Timeout type.

Parameters
[in]msTime in milliseconds to convert.
Returns
Equivalent tick count clamped to the maximum value allowed by Timeout (WAIT_INFINITE).
Note
ISR-unsafe (internally calls GetTickResolution() which accesses the kernel service).

Definition at line 392 of file stk_helper.h.

393{
394 const Time time_ms = static_cast<Time>(ms);
395 const Ticks tick_count = GetTicksFromMs(time_ms);
396
397 const Ticks final_ticks = (tick_count < static_cast<Ticks>(WAIT_INFINITE)) ?
398 tick_count : static_cast<Ticks>(WAIT_INFINITE);
399
400 return static_cast<Timeout>(final_ticks);
401}
int32_t Timeout
Timeout time (ticks).
Definition stk_common.h:150
static constexpr Timeout WAIT_INFINITE
Timeout value: block indefinitely until the synchronization object is signaled.
Definition stk_common.h:208

References __stk_forceinline, GetTicksFromMs(), and WAIT_INFINITE.

Referenced by DelayMs(), and SleepMs().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetTid()

TId stk::GetTid ( )
inlinestatic

Get task/thread Id of the calling task.

Returns
Id of the calling task/thread.
Warning
ISR-unsafe. Calling from an ISR context is not permitted and will trigger an assertion.

Definition at line 331 of file stk_helper.h.

332{
334}
virtual TId GetTid() const =0
Get thread Id of the currently running task.

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::GetTid().

Referenced by eTaskGetState(), stk::sync::SpinLock::Lock(), osThreadGetId(), stk_tid(), stk::sync::SpinLock::TryLock(), stk::sync::Mutex::Unlock(), stk::sync::SpinLock::Unlock(), uxTaskGetStackHighWaterMark(), uxTaskGetStackHighWaterMark2(), uxTaskGetSystemState(), uxTaskPriorityGet(), vTaskDelete(), vTaskList(), vTaskPrioritySet(), vTaskSuspend(), and xTaskGetCurrentTaskHandle().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetTidFromUserTask()

constexpr TId stk::GetTidFromUserTask ( const ITask * task)
staticconstexprnoexcept

Get task identifier from ITask instance.

Returns
TId derived from the bound ITask pointer address (unique per task instance).
See also
GetUserTaskFromTid

Definition at line 596 of file stk_arch.h.

596{ return hw::PtrToWord(task); }
static constexpr Word PtrToWord(T *const ptr) noexcept
Cast a pointer to a CPU register-width integer.
Definition stk_arch.h:106

References stk::hw::PtrToWord().

Referenced by stk::ITask::GetId(), and stk::Kernel< TMode, TSize, TStrategy, TPlatform >::KernelTask::GetTid().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetTimeNowMs()

Time stk::GetTimeNowMs ( )
inlinestatic

Get current time in milliseconds since kernel start.

Returns
Milliseconds elapsed since IKernel::Start() was called.
Note
ISR-safe.
When the tick resolution is exactly 1000 µs (1 ms, the default PERIODICITY_DEFAULT), the tick count is returned directly without multiplication, avoiding a 64-bit multiply.

Definition at line 418 of file stk_helper.h.

419{
420 const IKernelService *const service = IKernelService::GetInstance();
421 const uint32_t resolution = service->GetTickResolution();
422 const Ticks tick_count = service->GetTicks();
423
424 return ((resolution == 1000U) ? tick_count :
425 ((tick_count * static_cast<Ticks>(resolution)) / 1000LL));
426}
Interface for the kernel services exposed to the user processes during run-time when Kernel started s...

References __stk_forceinline, stk::IKernelService::GetInstance(), stk::IKernelService::GetTickResolution(), and stk::IKernelService::GetTicks().

Referenced by stk_time_now_ms().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetUserTaskFromTid()

constexpr ITask * stk::GetUserTaskFromTid ( TId task_id)
staticconstexprnoexcept

◆ IsIsrTid()

bool stk::IsIsrTid ( TId id)
inlinestatic

Test whether a task identifier represents an ISR context.

Returns true if tid was produced by GetTid() called from an interrupt service routine, i.e. its upper 20 bits match TID_ISR_N. Use this predicate instead of comparing against TID_ISR_N directly.

Parameters
[in]idTask identifier to test.
Returns
true if tid encodes an ISR context, false otherwise.
Note
ISR-safe (bitmask arithmetic only, no kernel calls).
See also
TID_ISR_N

Definition at line 237 of file stk_common.h.

237{ return ((id & TID_ISR_N) == TID_ISR_N); }
static constexpr TId TID_ISR_N
Bitmask sentinel for ISR-context task identifiers.
Definition stk_common.h:197

References __stk_forceinline, and TID_ISR_N.

◆ Max()

template<typename T>
constexpr T stk::Max ( T a,
T b )
staticconstexprnoexcept

Compile-time maximum of two values.

Note
Arguments are evaluated exactly once, safe for any expression type.

Definition at line 673 of file stk_defs.h.

673{ return ((a > b) ? a : b); }

Referenced by stk::memory::BlockMemoryPool::AlignBlockSize(), stk::Kernel< TMode, TSize, TStrategy, TPlatform >::KernelTask::GetSleepTicks(), and osThreadNew().

Here is the caller graph for this function:

◆ Min()

◆ Sleep()

void stk::Sleep ( Timeout tick_count)
inlinestatic

Put calling process into a sleep state.

Note
Unlike Delay this function does not waste CPU cycles and allows kernel to put CPU into a low-power state.
Unsupported in HRT mode (see stk::KERNEL_HRT); in HRT mode tasks sleep automatically according to their periodicity and workload.
Parameters
[in]tick_countSleep time (in ticks). 0 does not cause yield, use Yield instead. Negative will cause an assertion.
Warning
ISR-unsafe. Calling from an ISR context is not permitted and will trigger an assertion.

Definition at line 452 of file stk_helper.h.

453{
454 IKernelService::GetInstance()->Sleep(tick_count);
455}
virtual void Sleep(Timeout ticks)=0
Put calling process into a sleep state.

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::Sleep().

Referenced by osDelay(), SleepMs(), stk_sleep(), and vTaskDelay().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SleepCancel()

void stk::SleepCancel ( TId task_id)
inlinestatic

Cancel sleep of the task.

Parameters
[in]task_idId of the task.
Note
No-op if task was not in a sleeping state.
ISR-safe.

Definition at line 487 of file stk_helper.h.

488{
490}
virtual void SleepCancel(TId task_id)=0
Cancel sleep of the task.

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::SleepCancel().

Referenced by stk_sleep_cancel(), and xTaskAbortDelay().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SleepMs()

void stk::SleepMs ( Timeout ms)
inlinestatic

Put calling process into a sleep state.

Note
Unlike Delay this function does not waste CPU cycles and allows kernel to put CPU into a low-power state.
Unsupported in HRT mode (see stk::KERNEL_HRT); in HRT mode tasks sleep automatically according to their periodicity and workload.
Converts ms to ticks and calls IKernelService::SleepTicks() which schedules the calling task to sleep and spins until the kernel switches it back in.
Parameters
[in]msSleep time (milliseconds). 0 does not cause yield, use Yield instead. Negative will cause an assertion.
Warning
ISR-unsafe. Calling from an ISR context is not permitted and will trigger an assertion.

Definition at line 465 of file stk_helper.h.

466{
468}
static void Sleep(Timeout tick_count)
Put calling process into a sleep state.
Definition stk_helper.h:452

References __stk_forceinline, GetTicksFromMsClampedToTimeout(), and Sleep().

Referenced by stk_sleep_ms().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SleepUntil()

bool stk::SleepUntil ( Ticks timestamp)
inlinestatic

Put calling process into a sleep state until the specified timestamp.

Note
Unlike Delay this function does not waste CPU cycles and allows kernel to put CPU into a low-power state.
Unsupported in HRT mode (see stk::KERNEL_HRT); in HRT mode tasks sleep automatically according to their periodicity and workload.
Parameters
[in]timestampAbsolute timestamp (ticks). 0 does not cause yield, use Yield instead. Negative will cause an assertion.
Warning
ISR-unsafe. Calling from an ISR context is not permitted and will trigger an assertion.
Returns
True if sleep succeeded, false otherwise.

Definition at line 477 of file stk_helper.h.

478{
479 return IKernelService::GetInstance()->SleepUntil(timestamp);
480}
virtual bool SleepUntil(Ticks timestamp)=0
Put calling process into a sleep state until the specified timestamp.

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::SleepUntil().

Referenced by osDelayUntil(), stk_sleep_until(), and xTaskDelayUntil().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ STK_KERNEL_PANIC()

__stk_forceinline void stk::STK_KERNEL_PANIC ( stk::EKernelPanicId id)
static

Called when the kernel detects an unrecoverable internal fault.

Note
Unlike STK_ASSERT (which checks preconditions) this macro is reached only when a runtime invariant has been irreversibly violated — the kernel cannot continue operating correctly from this point.
Default behaviour:
  • In debug builds: triggers a hardware breakpoint so a debugger can inspect state, then falls through to the safe-state handler.
  • In all builds: calls STK_PANIC_HANDLER(id) which must not return.
Override STK_PANIC_HANDLER by defining it before including this header or in stk_config.h. The handler receives a numeric id (EKernelPanicId) and must never return. A minimal safe default is provided below.
Parameters
[in]idEKernelPanicId value identifying the fault.

Definition at line 75 of file stk_arch.h.

76{
77 __stk_debug_break(); // debug aid
78 STK_PANIC_HANDLER(id); // must not return
79}
#define STK_PANIC_HANDLER(id)
Definition stk_arch.h:57
static void __stk_debug_break()
Definition stk_defs.h:393

References __stk_debug_break(), __stk_forceinline, and STK_PANIC_HANDLER.

Referenced by stk::sync::SpinLock::MakeLocked(), stk::Kernel< stk::KERNEL_DYNAMIC|stk::KERNEL_SYNC|stk::KERNEL_TICKLESS,(16U), stk::SwitchStrategyFP32, stk::PlatformDefault >::OnStart(), stk::Kernel< stk::KERNEL_DYNAMIC|stk::KERNEL_SYNC|stk::KERNEL_TICKLESS,(16U), stk::SwitchStrategyFP32, stk::PlatformDefault >::OnTaskExit(), stk::sync::Mutex::TimedLock(), stk::sync::RWMutex::TimedLock(), and stk::Kernel< stk::KERNEL_DYNAMIC|stk::KERNEL_SYNC|stk::KERNEL_TICKLESS,(16U), stk::SwitchStrategyFP32, stk::PlatformDefault >::UpdateFsmState().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Yield()

void stk::Yield ( )
inlinestatic

Notify scheduler to switch to the next runnable task.

Note
A cooperative scheduling mechanism. In HRT mode acts as a cooperation point (see stk::KERNEL_HRT).
Warning
ISR-unsafe. Calling from an ISR context is not permitted and will trigger an assertion.

Definition at line 496 of file stk_helper.h.

497{
499}
virtual void SwitchToNext()=0
Notify scheduler to switch to the next task (yield).

References __stk_forceinline, stk::IKernelService::GetInstance(), and stk::IKernelService::SwitchToNext().

Referenced by osThreadExit(), osThreadYield(), stk_yield(), taskYIELD_impl(), and vTaskEndScheduler().

Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ DEFAULT_WEIGHT

◆ NO_WAIT

Timeout stk::NO_WAIT = 0
staticconstexpr

Timeout value: return immediately if the synchronization object is not yet signaled (non-blocking poll).

Note
Pass as the timeout argument to IKernelService::Wait().

Definition at line 214 of file stk_common.h.

Referenced by CmsisTimeoutToStk(), FrtosTimeoutToStk(), stk::Kernel< TMode, TSize, TStrategy, TPlatform >::KernelTask::GetSleepTicks(), stk::Kernel< TMode, TSize, TStrategy, TPlatform >::KernelTask::KernelTask(), osMessageQueueGet(), osMessageQueuePut(), osMutexAcquire(), osSemaphoreAcquire(), stk::time::TimerHost::ProcessCommands(), stk::time::TimerHost::PushCommand(), stk::sync::Pipe::ReadBulk(), stk::sync::PipeT< Timer *, 32U >::ReadBulk(), stk::sync::Pipe::ReadBulkTriggered(), stk::memory::BlockMemoryPool::TimedAlloc(), stk::sync::Mutex::TimedLock(), stk::memory::BlockMemoryPool::TryAlloc(), stk::memory::BlockMemoryPool::TryAllocT(), stk::sync::MessageQueue::TryGet(), stk::sync::Mutex::TryLock(), stk::sync::RWMutex::TryLock(), stk::sync::MessageQueue::TryPeek(), stk::sync::MessageQueue::TryPeekFront(), stk::sync::MessageQueue::TryPut(), stk::sync::MessageQueue::TryPutFront(), stk::sync::Pipe::TryRead(), stk::sync::PipeT< Timer *, 32U >::TryRead(), stk::sync::Pipe::TryReadBulk(), stk::sync::PipeT< Timer *, 32U >::TryReadBulk(), stk::sync::Pipe::TryReadBulkTriggered(), stk::sync::RWMutex::TryReadLock(), stk::sync::EventFlags::TryWait(), stk::sync::Semaphore::TryWait(), stk::sync::Pipe::TryWrite(), stk::sync::PipeT< Timer *, 32U >::TryWrite(), stk::sync::Pipe::TryWriteBulk(), stk::sync::PipeT< Timer *, 32U >::TryWriteBulk(), stk::time::TimerHost::UpdateTime(), stk::sync::ConditionVariable::Wait(), stk::sync::Event::Wait(), stk::sync::EventFlags::Wait(), stk::sync::Semaphore::Wait(), stk::sync::Pipe::WriteBulk(), stk::sync::PipeT< Timer *, 32U >::WriteBulk(), xMessageBufferSend(), and xMessageBufferSendFromISR().

◆ NO_WEIGHT

◆ TID_ISR_N

TId stk::TID_ISR_N = static_cast<TId>(0xFFFFF000U)
staticconstexpr

Bitmask sentinel for ISR-context task identifiers.

The upper 20 bits of the TId space are reserved for ISR contexts. When GetTid() is called from an interrupt service routine, it returns TID_ISR_N | exception_number, where exception_number is the raw value:

// bits[31:12] = 0xFFFFF (this sentinel mask)
// bits[11:0] = exception number

This encoding guarantees uniqueness per exception, so two ISRs at different priority levels or with different exception numbers are never treated as the same owner by synchronization primitives.

Task TIds are word-aligned pointers. On all supported Cortex-M and RISC-V targets they fall in the range 0x00000000..0xEFFFFFFF, so no overlap with the 0xFFFFF000..0xFFFFFFFF sentinel range is possible.

Note
Use IsIsrTid() to test for this sentinel rather than comparing against this constant directly.
See also
IsIsrTid()

Definition at line 197 of file stk_common.h.

Referenced by IsIsrTid().

◆ TID_NONE

◆ WAIT_INFINITE

Timeout stk::WAIT_INFINITE = INT32_MAX
staticconstexpr

Timeout value: block indefinitely until the synchronization object is signaled.

Note
Pass as the timeout argument to IKernelService::Wait().

Definition at line 208 of file stk_common.h.

Referenced by stk::memory::BlockMemoryPool::Alloc(), stk::memory::BlockMemoryPool::AllocT(), CmsisTimeoutToStk(), FrtosTimeoutToStk(), GetTicksFromMsClampedToTimeout(), stk::sync::Mutex::Lock(), stk::sync::RWMutex::Lock(), stk::Kernel< stk::KERNEL_DYNAMIC|stk::KERNEL_SYNC|stk::KERNEL_TICKLESS,(16U), stk::SwitchStrategyFP32, stk::PlatformDefault >::OnTaskSleepUntil(), stk::Kernel< stk::KERNEL_DYNAMIC|stk::KERNEL_SYNC|stk::KERNEL_TICKLESS,(16U), stk::SwitchStrategyFP32, stk::PlatformDefault >::OnTaskWait(), osThreadJoin(), stk::time::TimerHost::ProcessCommands(), stk::sync::PipeT< Timer *, 32U >::Read(), stk::sync::Pipe::ReadBulk(), stk::sync::PipeT< Timer *, 32U >::ReadBulk(), stk::sync::Pipe::ReadBulkTriggered(), stk::sync::RWMutex::ReadLock(), stk::time::TimerHost::Restart(), stk::Kernel< TMode, TSize, TStrategy, TPlatform >::KernelTask::ScheduleRemoval(), stk::sync::RWMutex::ScopedTimedLock::ScopedTimedLock(), stk::sync::RWMutex::ScopedTimedReadMutex::ScopedTimedReadMutex(), stk::time::TimerHost::SetPeriod(), stk::time::TimerHost::Start(), stk::time::TimerHost::StartOrReset(), stk::Kernel< stk::KERNEL_DYNAMIC|stk::KERNEL_SYNC|stk::KERNEL_TICKLESS,(16U), stk::SwitchStrategyFP32, stk::PlatformDefault >::SuspendTask(), stk::Kernel< TMode, TSize, TStrategy, TPlatform >::KernelTask::WaitObject::Tick(), stk::time::TimerHost::UpdateTime(), stk::sync::EventFlags::Wait(), stk::sync::PipeT< Timer *, 32U >::Write(), stk::sync::Pipe::WriteBulk(), stk::sync::PipeT< Timer *, 32U >::WriteBulk(), stk::sync::EventFlags::~EventFlags(), stk::sync::MessageQueue::~MessageQueue(), and stk::sync::Pipe::~Pipe().