atl_dump_trace()

Trace Probes for C

Purpose

Writes traces from the custom location to the .rio result file, when FIFO, FILE or USER buffer mode is selected in the Probe settings.

This macro is ignored in DEFAULT mode.

Syntax

atl_dump_trace()

Example

int main(int argc, char** argv)

{

...

atl_start_trace(atl_client, "../res/", client, 0);

atl_start_trace(atl_serv, "../res/", serv, 0);

...

atl_end_trace(atl_client);atl_end_trace(atl_serv);

atl_dump_trace();

...

}

Related Topics

Probe macros | atl_end_trace()