1 /* BEGIN INCLUDE FILE...tty_channel_meters.incl.pl1 */
 2 
 3 /* Include file to define structure for meters specific to tty (non-multiplexed) channels */
 4 /* Programs that include this file must also include tcb.incl.pl1. */
 5 
 6 /* Created February 1981 by Robert Coren */
 7 
 8 dcl  tty_meterp pointer;
 9 
10 dcl TTY_CHANNEL_METERS_VERSION_1 int static options (constant) init (1);
11 
12 dcl 1 tty_channel_meters aligned based (tty_meterp),
13     2 version fixed bin,
14     2 flags,
15       3 breakall bit (1) unaligned,
16       3 echoplex bit (1) unaligned,
17       3 padb bit (34) unaligned,
18     2 last_dialed_time fixed bin (71),                      /* time channel last dialed up */
19     2 baud_rate fixed bin,
20     2 user_process bit (36),                                /* = wtcb.uproc */
21     2 current_meters like tcb.cumulative_meters,            /* meters accumulated for the "life" of the channel */
22     2 saved_meters like tcb.cumulative_meters;              /* meters saved when channel most recently dialed up */
23 
24 /* END INCLUDE FILE...tty_channel_meters.incl.pl1 */