tracev
tracev( [s_variable... | t ] ) =>g_result
Description
Turns on tracing of assignments to specified variables. This is an nlambda function.
If t is passed in, all variables are traced.
Passing t as an argument to the tracev function is allowed only if you set the internal system variable traceTEnable to t by typing sstatus(traceTEnable t)in the CIW.
If no argument is given, all variables being traced are returned. tracev prints the unevaluated and evaluated value assigned to the variable. The output port for tracing is ptport, which defaults to poport.
SKILL++ variables currently cannot be traced with tracev.
Arguments
Value Returned
Examples
tracev x ; Traces the variable x.
x = 5 ; Shows the old and new value of x.
untracev x ; Clears tracing for the variable x.
tracev t ; Traces all variable assignments.
untracev t ; Clears all variable tracing.
Related Topics
Return to top