Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #12 from nashif/topic/thread_name
Browse files Browse the repository at this point in the history
  • Loading branch information
nashif committed Oct 31, 2022
2 parents bea196a + 9044512 commit d926075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernelports/Zephyr/trcKernelPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ void sys_trace_k_thread_create(struct k_thread *thread, size_t stack_size, int p
}

#ifdef CONFIG_THREAD_NAME
if (thread->name != NULL && strlen(thread->name) > 0) {
if (strlen(thread->name) > 0) {
xTraceObjectSetName(xEntryHandle, thread->name);
}
#endif
Expand Down

0 comments on commit d926075

Please sign in to comment.