mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-04 06:24:52 +00:00
tracing: _k_command_stack is explicitly not tracked.
Jira: ZEP-379 Change-Id: I94a1695fd4efb288dac9cfcaa4d3423e2970e108 Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@intel.com>
This commit is contained in:
parent
562b491182
commit
870ca36a0b
|
@ -48,7 +48,14 @@ static uint32_t __noinit _k_server_command_stack_storage
|
|||
|
||||
struct nano_stack _k_command_stack = {NULL,
|
||||
_k_server_command_stack_storage,
|
||||
_k_server_command_stack_storage};
|
||||
_k_server_command_stack_storage,
|
||||
#ifdef CONFIG_DEBUG_TRACING_KERNEL_OBJECTS
|
||||
/* _k_command stack is not tracked by
|
||||
* the debug tracing kernel objects feature.
|
||||
*/
|
||||
NULL,
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
extern void _k_server(int unused1, int unused2);
|
||||
|
|
Loading…
Reference in New Issue
Block a user