Sun Studio 12: Debugging a Program With dbx

Syntax

tracei step

Trace each machine instruction.

tracei next -in function

Trace each instruction while in the given function.

tracei at address_expression

Trace the instruction at address.

tracei in function

Trace calls to and returns from the given function.

tracei inmember function

Trace calls to any member function named function.

tracei infunction function

Trace when any function named function is called.

tracei inclass class

Trace calls to any member function of class.

tracei change variable

Trace changes to the variable.

where:

filename is the name of the file to which you want trace output sent.

function is the name of a function.

line is the number of a source code line.

class is the name of a class.

variable is the name of a variable.

See trace Command for more information.