1 /* Begin fs_dev_types_sector.incl.pl1 */
 2 
 3 
 4 /****^  HISTORY COMMENTS:
 5   1) change(86-04-21,Fawcett), approve(86-04-21,MCR7383),
 6      audit(86-05-12,Coppola), install(86-07-18,MR12.0-1098):
 7      Add the sector differance for devices that do 64 word IO and devices that
 8      do 512 word IO.
 9                                                    END HISTORY COMMENTS */
10 
11 /* Created by R. A. Fawcett for 512 word IO. for procedures that do not
12            need all the data in fs_dev_types. This is also included in
13            fs_dev_types.incl.pl1  */
14 
15 dcl  sect_per_cyl (9) fixed bin static options (constant) init /* table of # of sectors per cylinder on each device */
16     (0, 760, 760, 760, 589, 360, 1280, 255, 255);
17 
18 dcl  sect_per_sv (9) fixed bin (24) static options (constant) init /* table of # of sectors per cylinder on each subvolume */
19      (0, 0, 0, 0, 0, 0, 0, 112710, 150450);
20 
21 dcl  sect_per_rec (9) fixed bin static options (constant) init
22  /* table of # of sectors per record on each device */
23  /* coresponding array in disk_pack.incl.pl1 called SECTORS_PER_RECORD */
24     (0, 16, 16, 16, 16, 16, 16, 2, 2);
25 
26 dcl  sect_per_vtoc (9) fixed bin static options (constant) init
27      (0, 3, 3, 3, 3, 3, 3, 1, 1);
28 
29 dcl  vtoc_per_rec (9) fixed bin  static options  (constant) init
30 /* corespending array in disk_pack.incl.pl1 named VTOCES_PER_RECORD */
31      (0, 5, 5, 5, 5, 5, 5, 2, 2);
32 
33 dcl  sect_per_track (9) fixed bin static options (constant) init /* table of # of sectors per track on each device */
34     (0, 40, 40, 40, 31, 18, 64, 17, 17);
35 
36 dcl  words_per_sect (9) fixed bin static options (constant) init /* table of # of words per sector on each device */
37     (0, 64, 64, 64, 64, 64, 64, 512, 512);
38 
39 /* End fs_dev_types_sector.incl.pl1 */
40