Native Inspect Manual (H06.04+)

Syntax of Native Inspect Commands
Native Inspect Manual528122-005
4-46
list command
Otherwise, use the map-source-name command to map the compile-time file name
to the current name. You can copy and paste the path name displayed in the error
message as the left-hand argument to the map command.
For examples of locating source files, see Determining the Compilation-Time Source
File Name (If Necessary) on page 2-5 and Configuring a Search Path for Your Source
Files (If Necessary) on page 2-5.
For additional details regarding COBOL programs, see Section 3, Using Native Inspect
With COBOL Programs.
Examples
To list source:
To list source at a line:
(eInspect 1,463):list
377 */
378 printf( "%s building PCBReadyList: 0, 2, 4\n",
getStepPrefix( 2 ) );
379 PCBList_add( &PCBReadyList, PCBList.entry[0] );
380 pcb = PCBList.entry[0]->ref.pcb;
381 pcb->state = PCBState_ready;
382 pcb->flags.item.isReady = 1;
383 pcb->flags.item.isHappy = 1;
384
385 PCBList_add( &PCBReadyList, PCBList.entry[2] );
386 pcb = PCBList.entry[2]->ref.pcb;
(eInspect 1,463):list
387 pcb->state = PCBState_ready;
388 pcb->flags.item.isReady = 1;
389 pcb->flags.item.isHappy = 1;
390
391 PCBList_add( &PCBReadyList, PCBList.entry[4] );
392 pcb = PCBList.entry[4]->ref.pcb;
393 pcb->state = PCBState_ready;
394 pcb->flags.item.isReady = 1;
395 pcb->flags.item.isHappy = 1;
396
(eInspect 1,463):list 200
195 static PCBAttribute_t *PCBAttribute_createNonstop();
196 static PCBAttribute_t *PCBAttribute_createSystem();
197 static PCBHandle_t *PCBHandle_create( PCB_t *pcb );
198 static PCBHandle_t *PCBHandle_addRef( PCBHandle_t );
199 static void PCBList_add( PCBLink_t **list, PCBHandle_t );
200
201 static void pcbDataStructs_initialize();
202
203 static void test_complexTypes();
204
(eInspect 1,463):