Sun Studio 12: Debugging a Program With dbx

Syntax

nexti

Step one machine instruction (step over calls).

nexti n

Step n machine instructions (step over calls).

nexti -sig signal

Deliver the given signal while stepping.

nexti ... lwp_id

Step the given LWP.

nexti ... thread_id

Step the LWP on which the given thread is active. Will not implicitly resume all LWPs when stepping over a function.

where:

n is the number of instructions to step.

signal is the name of a signal.

thread_id is a thread ID.

lwp_id is an LWP ID.