Native Inspect Manual (H06.07+)

Using Native Inspect
Native Inspect Manual528122-006
2-9
List Source
List Source
Trace the Stack
Notes
The entry for frame #0 identifies the current location where the program is
suspended.
Control Execution
Notes
The next command steps execution over function, procedure, and program unit
calls
You can set a breakpoint on any source line number
(eInspect 3,591):list
74 void main(void)
75 {
75.1 char local_buf[80];
76 char *local_ptr1, *local_ptr2;
77 int local_q;
78 local_ptr1 = "From main";
78.1 strcpy( local_buf, "Hello world" );
78.2 local_ptr2 = local_buf;
79 local_q = 0;
80 call1(local_ptr1,local_q);
(eInspect 3,591):bt
#0 main () at \PIPPIN.$D0117.NITEST.GARTCC:78
#1 0x700034d0:0 in _MAIN () at \SPEEDY.$RLSE.T8432H01.CPLMAINC:68
(eInspect 3,591):next
78.1 strcpy( local_buf, "Hello world" );
(eInspect 3,591):next
78.2 local_ptr2 = local_buf;
(eInspect 3,591):b 79
Breakpoint 2 at 0x700012d0:1: file \PIPPIN.$D0117.NITEST.GARTCC, line 79.
(eInspect 3,591):c
Continuing.
Breakpoint 2, main () at \PIPPIN.$D0117.NITEST.GARTCC:79
79 local_q = 0;