Sun Studio 12 Update 1: Debugging a Program With dbx

pop Command

The pop command pops a frame or frames from the stack:

pop

Pop current frame.

pop number

Pop number frames.

pop -f number

Pop frames until specified frame number.

Any calls popped are re-executed upon resumption, which might result in unwanted program changes. pop also calls destructors for objects local to the popped functions.

For more information, see pop Command.