1 /* BEGIN INCLUDE FILE ... driver_ptr_list.incl.pl1   */
 2 
 3 /* This is a list of pointers to the driver status segments used by this process */
 4 
 5 
 6 
 7 dcl list_ptr pointer;                   /* should be set to iodd_static.driver_list_ptr */
 8 
 9 dcl 1 driver_ptr_list based(list_ptr),
10        2 number fixed bin,              /* number of pointer entries */
11        2 list_pad fixed bin,            /* pad to even word boundry */
12        2 stat_seg(0 refer(driver_ptr_list.number)),
13           3 stat_segp ptr;              /* pointer to driver status seg(i) */
14 
15 
16 /* END INCLUDE FILE ... driver_ptr_list.incl.pl1  */