Sun Studio 12 Update 1: Debugging a Program With dbx

stepi Command

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

Syntax

stepi

Single step one machine instruction (step into calls).

stepi n

Single step n machine instructions (step into calls).

stepi -sig signal

Step and deliver the given signal.

stepi ...lwp_id

Step the given LWP.

stepi ...thread_id

Step the LWP on which the given thread is active.

where:

n is the number of instructions to step.

signal is the name of a signal.

lwp_id is an LWP ID.

thread_id is a thread ID.