debug: tracing: add sys_trace_thread_name_set

Initial thread creation and tracing information
occurs with empty thread names.  For better tracing information,
we need to a way to get actual thread names if they are set
in order to better track thread names and their IDs.

Signed-off-by: Nicholas Lowell <nlowell@lexmark.com>
This commit is contained in:
Nicholas Lowell 2019-07-16 11:05:35 -04:00 committed by Anas Nashif
commit 5b322d9331
8 changed files with 51 additions and 1 deletions

View file

@ -99,6 +99,12 @@ void z_sys_trace_thread_switched_out(void);
*/
#define sys_trace_thread_info(thread)
/**
* @brief Called when a thread name is set
* @param thread Thread structure
*/
#define sys_trace_thread_name_set(thread)
/**
* @brief Called when entering an ISR
*/