Native Inspect Manual (H06.03+)

Table Of Contents
Syntax of Native Inspect Commands
Native Inspect Manual528122-003
3-45
Locating Source Files
Examples
To list source:
To list source at a line:
To list source at a function:
(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):
eInspect 1,463):list pcbDataStructs_initialize
335
336 /* **************************
337 * pcbDataStructs_initialize
338 */
339 static void pcbDataStructs_initialize()
340 {
341 PCB_t *pcb;
342 PCBHandle_t *pcbHandle;
343
344 printf( "%s pcbDataStructs_initialize\n",
getStepPrefix(
1 ) );
(eInspect 1,463):