Sun Studio 12 Update 1: Debugging a Program With dbx

nexti Command

The nexti command steps one machine instruction (stepping over calls). It is valid only in native mode.

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.