1 /* Begin include file ..... vrm_data.incl.pl1 */
 2 
 3 /* Declaration of vrm_data segment, containing vrm lock */
 4 /* Created 07/27/84 by EJ Sharpe by copying mdc_data.incl.pl1 and
 5                     changing every occurance of "mdc" with "vrm"
 6 */
 7 
 8 dcl  vrm_datap ptr;
 9 
10 dcl 1 vrm_data aligned based (vrm_datap),
11     2 lock bit (36),                                        /* The actual lock */
12     2 lock_cnt fixed bin (35),                              /* Meter of times locked */
13     2 unlock_cnt fixed bin (35),                            /* Meter of times unlocked */
14     2 fill fixed bin (35),
15     2 time_locked fixed bin (71),                           /* Time last locked */
16     2 time_spent_locked fixed bin (71),                     /* Total time lock was locked */
17     2 locker_name char (32);                                /* Name of process locking lock */
18 
19 /* End include file ..... vrm_data.incl.pl1 */