Native Inspect Manual (H06.03+)

Table Of Contents
Using Native Inspect
Native Inspect Manual528122-003
2-9
List Source
List Source
Set a Breakpoint on main()
Continue Execution
Trace the Stack (Back Trace)
List Source
Step Execution (Over Any Function Calls)
(eInspect 0,301): list
31 void call9(char *string,long long q);
32
33 void print_and_break (void) {
34
35 char *new_ptr = "In print_and_break\n";
36 int z = 7;
37 printf ("About to call DEBUG'\n");
38 DEBUG();
39 }
40 void main (void) {
(eInspect 0,301): b main
Breakpoint 1 at 0x70001020:0: file
C:\mywin\home\myfiles\test\nitest.c, line 40.
(eInspect 0,301): c
Continuing.
Breakpoint 1, main () at C:\mywin\home\myfiles\test\nitest.c:40
40 void main (void) {
(eInspect 0,301): bt
#0 main () at C:\mywin\home\myfiles\test\nitest.c:40
#1 0x70000e60:0 in _MAIN () at
\SPEEDY.$DATA06.T8432H01.CPLMAINC:68000
(eInspect 0,301): list
35 char *new_ptr = "In print_and_break\n";
36 int z = 7;
37 printf ("About to call DEBUG'\n");
38 DEBUG();
39 }
40 void main (void) {
41 char *local_ptr = "From main";
42 int local_q = 0;
43 call1(local_ptr,local_q);
44 }
(eInspect 0,301): next
41 char *local_ptr = "From main";
(eInspect 0,301): next
42 int local_q = 0;