atl_end_trace()

atl_end_trace()

Trace Probes for C

Purpose

Closes the trace environment of an instance. This macro must be executed before the application terminates.

Syntax

atl_end_trace(< ctx>)

where:

  • <handle> is the handle linked to an instance.

Example

int main(int argc, char** argv)

{

...

atl_start_trace(atl_client,"client.rio",client,1000);

atl_start_trace(atl_serv, "serv.rio", serv, 2000);

...

atl_end_trace(atl_client);

atl_end_trace(atl_serv);

...

}

Related Topics

Probe macros | atl_start_trace()