docs: Adds syscall tracing to tracing docs

Tracing guide in the docs was missing references to the added tracing
syscall macro hooks. This adds those.

Signed-off-by: Tom Burdick <thomas.burdick@intel.com>
This commit is contained in:
Tom Burdick 2021-12-15 10:25:29 -06:00 committed by Anas Nashif
commit 0513b242d4
2 changed files with 7 additions and 2 deletions

View file

@ -471,3 +471,8 @@ Object tracking
===============
.. doxygengroup:: subsys_tracing_object_tracking
Syscalls
========
.. doxygengroup:: subsys_tracing_apis_syscall

View file

@ -32,8 +32,8 @@
* @brief Trace syscall exit
* @param id Syscall ID (as defined in the generated syscall_list.h)
* @param name Syscall name as a token (ex: k_thread_create)
* @param ... Other parameters passed to the syscall, if the syscall has a return, the return value
* is the last parameter in the list
* @param ... Other parameters passed to the syscall, if the syscall has a
* return, the return value is the last parameter in the list
*/
#define sys_port_trace_syscall_exit(id, name, ...)