diag-trace 5.0.0
µOS++ Tracing Infrastructure
Loading...
Searching...
No Matches

Supplementary C++ trace utility functions. More...

Functions

void micro_os_plus::trace::dump_args (int argc, char *argv[], const char *name="main") noexcept
 Send the argv[] array to the trace output channel.

Detailed Description

These are supplementary functions designed to enhance tracing capabilities.

Function Documentation

◆ dump_args()

void micro_os_plus::trace::dump_args ( int argc,
char * argv[],
const char * name = "main" )
inlinenoexcept
Parameters
argcThe number of argv[] strings.
argvAn array of pointers to argument strings.
nameA null terminated string used as the function name prefix (default: "main").
Returns
Nothing.

Thin wrapper over tracer<T>::dump_args().

Definition at line 279 of file trace-cpp-api-inlines.h.

280 {
282 }
static void dump_args(int argc, char *argv[], const char *name="main") noexcept
Send the argv[] array to the trace output channel.

References micro_os_plus::trace::detail::tracer< T >::dump_args().