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:
Juan Manuel Cruz 2016-06-15 14:45:31 -05:00 committed by Anas Nashif
parent 562b491182
commit 870ca36a0b

View File

@ -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);