1 /* BEGIN INCLUDE FILE msg_wakeup_flags.incl.pl1 */
 2 /* Written 08/24/84 by Jim Lippard */
 3 
 4      dcl     1 wakeup_flags         unaligned based,
 5                2 hold_messages      bit (1),
 6                2 hold_notifications bit (1),
 7                2 print_notifications bit (1),
 8                2 wakeup_state       bit (2),
 9                2 mbz                bit (31);
10 
11      dcl     ACCEPT_MESSAGES        bit (2) internal static options (constant) init ("10"b);
12      dcl     DEFER_MESSAGES         bit (2) internal static options (constant) init ("01"b);
13 
14 /* END INCLUDE FILE msg_wakeup_flags.incl.pl1 */