Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
|
|
3.5.0 |
Macros for declaring thread stacks. More...
Go to the source code of this file.
Macros | |
#define | K_KERNEL_STACK_RESERVED ((size_t)0) |
#define | K_KERNEL_STACK_DECLARE(sym, size) |
Declare a reference to a thread stack. | |
#define | K_KERNEL_STACK_ARRAY_DECLARE(sym, nmemb, size) |
Declare a reference to a thread stack array. | |
#define | K_KERNEL_PINNED_STACK_ARRAY_DECLARE(sym, nmemb, size) |
Declare a reference to a pinned thread stack array. | |
#define | K_KERNEL_STACK_DEFINE(sym, size) Z_KERNEL_STACK_DEFINE_IN(sym, size, __kstackmem) |
Define a toplevel kernel stack memory region. | |
#define | K_KERNEL_PINNED_STACK_DEFINE(sym, size) Z_KERNEL_STACK_DEFINE_IN(sym, size, __kstackmem) |
Define a toplevel kernel stack memory region in pinned section. | |
#define | K_KERNEL_STACK_ARRAY_DEFINE(sym, nmemb, size) Z_KERNEL_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, __kstackmem) |
Define a toplevel array of kernel stack memory regions. | |
#define | K_KERNEL_PINNED_STACK_ARRAY_DEFINE(sym, nmemb, size) Z_KERNEL_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, __kstackmem) |
Define a toplevel array of kernel stack memory regions in pinned section. | |
#define | K_KERNEL_STACK_MEMBER(sym, size) Z_KERNEL_STACK_DEFINE_IN(sym, size,) |
Define an embedded stack memory region. | |
#define | K_KERNEL_STACK_SIZEOF(sym) (sizeof(sym) - K_KERNEL_STACK_RESERVED) |
#define | K_THREAD_STACK_RESERVED ((size_t)0U) |
Indicate how much additional memory is reserved for stack objects. | |
#define | K_THREAD_STACK_DECLARE(sym, size) |
Declare a reference to a thread stack. | |
#define | K_THREAD_STACK_ARRAY_DECLARE(sym, nmemb, size) |
Declare a reference to a thread stack array. | |
#define | K_THREAD_STACK_SIZEOF(sym) (sizeof(sym) - K_THREAD_STACK_RESERVED) |
Return the size in bytes of a stack memory region. | |
#define | K_THREAD_STACK_DEFINE(sym, size) Z_THREAD_STACK_DEFINE_IN(sym, size, __stackmem) |
Define a toplevel thread stack memory region. | |
#define | K_THREAD_PINNED_STACK_DEFINE(sym, size) K_THREAD_STACK_DEFINE(sym, size) |
Define a toplevel thread stack memory region in pinned section. | |
#define | K_THREAD_STACK_LEN(size) |
Calculate size of stacks to be allocated in a stack array. | |
#define | K_THREAD_STACK_ARRAY_DEFINE(sym, nmemb, size) Z_THREAD_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, __stackmem) |
Define a toplevel array of thread stack memory regions. | |
#define | K_THREAD_PINNED_STACK_ARRAY_DEFINE(sym, nmemb, size) K_THREAD_STACK_ARRAY_DEFINE(sym, nmemb, size) |
Define a toplevel array of thread stack memory regions in pinned section. | |
#define | K_THREAD_STACK_MEMBER(sym, size) |
Define an embedded stack memory region. | |
Macros for declaring thread stacks.
#define K_KERNEL_STACK_RESERVED ((size_t)0) |
#define K_THREAD_STACK_RESERVED ((size_t)0U) |
Indicate how much additional memory is reserved for stack objects.
Any given stack declaration may have additional memory in it for guard areas, supervisor mode stacks, or platform-specific data. This macro indicates how much space is reserved for this.
This value only indicates memory that is permanently reserved in the stack object. Memory that is "borrowed" from the thread's stack buffer is never accounted for here.
Reserved memory is at the beginning of the stack object. The reserved area must be appropriately sized such that the stack buffer immediately following it is correctly aligned.