/* BEGIN INCLUDE FILE msg_facility_mailbox.incl.pl1 */ /****^ HISTORY COMMENTS: 1) change(84-05-10,Lippard), approve(), audit(), install(): Created by Jim Lippard. 2) change(85-01-12,Lippard), approve(), audit(), install(): Remove last_message_index. 3) change(85-02-01,Lippard), approve(), audit(), install(): Add msg_array_compacted. 4) change(86-05-07,Lippard), approve(86-05-27,MCR7418), audit(86-06-24,Hartogs), install(86-06-30,MR12.0-1080): Add msg_array_updated. END HISTORY COMMENTS */ dcl 1 msg_facility_mailbox aligned based (msg_facility_mailbox_ptr), 2 version char (8), /* structure version */ 2 next_mbx_ptr ptr, /* ptr to next mailbox in chain */ 2 dname char (168), /* mailbox directory */ 2 ename char (32), /* mailbox entry name */ 2 uid bit (36), /* mailbox unique ID */ 2 default_mbx bit (1), /* user's default mailbox */ 2 event_channel fixed bin (71), /* event channel for wakeups */ 2 index fixed bin, /* index to mailbox for mailbox_ */ 2 wakeup_flags, 3 hold_messages bit (1) unal, /* messages are being held */ 3 hold_notifications bit (1) unal, /* notifications are being held */ 3 notify_mail bit (1) unal, /* notifications are being printed */ 3 wakeup_state bit (2) unal, /* message acceptance state */ 3 mbz bit (31) unal, 2 short_format bit (1), /* messages printed in short format */ 2 prefix char (32) var, /* prefix string */ 2 short_prefix bit (1), /* prefix printed for short form messages */ 2 mbz2 bit (36) unal, 2 alarm_time fixed bin (71), /* alarm wakeup time */ 2 alarm_event_channel fixed bin (71), /* event channel for alarm */ 2 last, 3 last_message_ptr ptr, /* ptr to mail_format structure for last message */ 3 last_id bit (72) aligned, /* message ID of last message */ 3 last_message_number fixed bin, /* number of last message */ 3 mbz3 bit (36) unal, 2 messages_ptr ptr, /* ptr to message array */ 2 n_elements fixed bin, /* number of elements in message array */ 2 n_messages fixed bin, /* number of messages */ 2 highest_message fixed bin, /* number of highest message */ 2 msg_array_flags unaligned, 3 msg_array_compacted bit (1), /* if msg_array has been compacted */ 3 msg_array_updated bit (1), /* if msg_array has been updated */ 2 mbz4 bit (36) unal, 2 wakeup_processor, 3 wakeup_handler variable entry (ptr, ptr), /* wakeup handler procedure */ 3 wakeup_info_ptr ptr, 2 alarm_processor, 3 alarm_handler variable entry (ptr, ptr), /* alarm handler procedure */ 3 alarm_info_ptr ptr; dcl MSG_FACILITY_MAILBOX_VERSION_1 char (8) internal static options (constant) init ("msgfmbx1"); dcl msg_facility_mailbox_ptr ptr; /* END INCLUDE FILE msg_facility_mailbox.incl.pl1 */ */ ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group Bull including Bull HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell Bull Inc., Groupe Bull and Bull HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, Bull or Bull HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by Bull HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved */