1 2 /* Begin include file ... sc_info.incl.pl1 */ 3 /* format: style3 */ 4 /* quota_cell.incl.pl1 MUST be included with this file. */ 5 6 /* This file defines a structure used for communicating vtoc-resident 7 information between status accessing and setting primitives in 8 segment control */ 9 10 dcl scip ptr; 11 12 dcl 1 based_sc_info aligned based (scip), 13 2 dtu bit (36), /* Date-time used */ 14 2 dtm bit (36), /* Date-time modified */ 15 2 records fixed bin, /* # records of storage used */ 16 2 msl fixed bin, /* Maximum segment length, words */ 17 2 csl fixed bin, /* Current segment length, words */ 18 2 flags, 19 3 dnzp bit (1) unal, 20 3 pad_gtpd bit (1) unal, /* obsolete PML */ 21 3 damaged bit (1) unal, 22 3 nid bit (1) unal, /* no incremental volume dump switch */ 23 3 ncd bit (1) unal, /* no complete dump switch */ 24 3 synchronized bit (1) unal, 25 3 pad bit (30) unal, 26 2 pf_count fixed bin (35), /* page fault counter. may wrap */ 27 2 qcell (0:1) aligned like quota_cell, 28 2 vol_dtd bit (36), /* volume date-time-dumped */ 29 2 volid (3) bit (36) aligned; /* these belong to the dumper */ 30 31 32 dcl 1 sc_info like based_sc_info aligned; 33 34 /* End include file ... sc_info.incl.pl1 */