1 /* BEGIN INCLUDE FILE ... config_schd_card.incl.pl1 ... 11/27/80 W. Olin Sibert */
 2 
 3 dcl  schd_cardp pointer;                                    /* pointer to SCHD card */
 4 
 5 dcl 1 schd_card aligned based (schd_cardp),                 /* SCHD card declaration */
 6     2 word char (4),                                        /* "schd" */
 7     2 ws_factor fixed bin (35, 18),                         /* Working Set Factor */
 8     2 tefirst fixed bin,                                    /* tefirst (in 1/8 second units) */
 9     2 telast fixed bin,                                     /* telast (in 1/8 second units) */
10     2 timax fixed bin,                                      /* timax (in 1/8 second units) */
11 
12     2 min_eligible fixed bin,                               /* minimum number of eligible processes */
13     2 max_eligible fixed bin,                               /* maximum number of eligible processes */
14     2 max_max_eligible fixed bin,                           /* upper limit on max_eligible -- # of stack_0 segments */
15 
16     2 pad (7) bit (36) aligned,                             /* Pad to 15 fields */
17 
18     2 type_word aligned,
19       3 field_type (14) bit (2) unaligned,                  /* type of each field; see config_deck.incl.pl1 */
20       3 pad1 bit (4) unaligned,
21       3 n_fields fixed bin (4) unsigned unaligned;          /* number of fields used on card */
22 
23 dcl  SCHD_CARD_WORD char (4) aligned internal static options (constant) init ("schd");
24 
25 /* END INCLUDE FILE ... config_schd_card.incl.pl1 */