1 /*  START OF:       synch_page.incl.pl1    October 1982       *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
 2 
 3 
 4      dcl     synch_pagep            ptr;
 5 
 6      dcl     1 synch_page           aligned based (synch_pagep),
 7                2 version            bit (9) unaligned,      /* Version ID */
 8                2 journal_index      fixed bin (9) unsigned unaligned, /* System journal index for this page */
 9                2 time_stamp         fixed bin (53) unaligned, /* Time stamp for journal comparison */
10                2 pad                (1022) bit (36) aligned;
11 
12      dcl     SYNCH_PAGE_VERSION_1   bit (9) int static options (constant) init ("641"b3);
13 
14 /*  END OF:         synch_page.incl.pl1                       *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */