Product Documentation
Cadence SKILL Development Reference
Product Version IC23.1, June 2023

untrace

untrace( 
[ s_function | t_fileName ... | t ] 
) 
=> g_result

Description

Turns tracing off for all functions specified that were traced using the tracef function. This is an nlambda function.

If the argument is a string, untrace assumes it is a file name and checks if the file was loaded after debug mode was turned on. If it was, it untraces all functions defined in that file.

Arguments

s_function

Any function that should no longer be  traced.

t_filename

Any file containing functions that should no longer be traced.

t

Turns off tracing for all functions that had tracing turned on.

Value Returned

g_result

List of the functions or files that were untraced.

Examples

Turn off tracing for the plus function.

untrace( plus)    

Turns off tracing for all functions in the testfns file assuming it was loaded after debug mode was turned on.

untrace( "testfns")

Clears all tracing.

untrace( t )    

Related Topics

Debug Functions

tracef

tracev

untracev


Return to top
 ⠀
X