COMPILATION LISTING OF SEGMENT mlsys_fips98_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 10/27/83 1141.3 mst Thu Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1983 * 4* * * 5* *********************************************************** */ 6 7 /* format: off */ 8 9 /* Mail System Utilities which encode/decode a message according to the Federal Information Processing Standard #98 10* format for CBMS messages */ 11 12 /* Created: September 1983 by G. Palter as an interim measure until FIPS-98 support is actually implemented */ 13 14 /* format: on,style4,delnl,insnl,ifthenstmt,ifthen */ 15 16 17 mlsys_fips98_: 18 procedure (); 19 20 return; /* not an entrypoint */ 21 22 23 /* decode_message Parameters */ 24 25 dcl P_fips98_message_bytes (*) bit (9) unaligned parameter;/* the FIPS-98 encoding of the message */ 26 dcl P_message_version character (8) parameter; /* version of message structure desired by caller */ 27 dcl P_im_message_info_ptr pointer parameter; /* ->im_message_info describing the in-mailbox message */ 28 dcl P_last_delivered_by pointer; /* -> address of user ring-1 claims delivered the message */ 29 dcl P_last_date_time_delivered fixed binary (71) parameter;/* date/time when ring-1 delivered the message */ 30 dcl P_requests_acknowledgement bit (1) aligned parameter; /* ON => the message expects an acknowledgement */ 31 dcl P_message_ptr pointer parameter; /* set -> the message created by this entrypoint */ 32 dcl P_code fixed binary (35) parameter; 33 34 35 36 /* Converts the FIPS-98 encoding of an in-mailbox message into its internal representation */ 37 38 decode_message: 39 entry (P_fips98_message_bytes, P_message_version, P_im_message_info_ptr, P_last_delivered_by, 40 P_last_date_time_delivered, P_requests_acknowledgement, P_message_ptr, P_code); 41 42 P_code = -1; /* not yet implemented */ 43 44 return; 45 46 end mlsys_fips98_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/27/83 1101.3 mlsys_fips98_.pl1 >spec>on>10/27/83-mail>mlsys_fips98_.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. P_code parameter fixed bin(35,0) dcl 32 set ref 38 42* P_fips98_message_bytes parameter bit(9) array unaligned dcl 25 ref 38 P_im_message_info_ptr parameter pointer dcl 27 ref 38 P_last_date_time_delivered parameter fixed bin(71,0) dcl 29 ref 38 P_last_delivered_by parameter pointer dcl 28 ref 38 P_message_ptr parameter pointer dcl 31 ref 38 P_message_version parameter char(8) unaligned dcl 26 ref 38 P_requests_acknowledgement parameter bit(1) dcl 30 ref 38 NAMES DECLARED BY EXPLICIT CONTEXT. decode_message 000027 constant entry external dcl 38 mlsys_fips98_ 000012 constant entry external dcl 17 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 74 104 40 104 Length 250 40 10 127 34 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME mlsys_fips98_ 64 external procedure is an external procedure. THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. return ext_entry ext_entry_desc NO EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 17 000011 20 000017 38 000020 42 000034 44 000037 ----------------------------------------------------------- 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