COMPILATION LISTING OF SEGMENT dfast_header_ Compiled by: Multics PL/I Compiler, Release 27d, of October 11, 1982 Compiled at: Honeywell LISD Phoenix, System M Compiled on: 11/04/82 1554.8 mst Thu Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* *********************************************************** */ 6 dfast_header_: proc (message_1, message_2); 7 8 dcl message_1 char (*); 9 dcl message_2 char (*); 10 11 dcl date_number fixed bin (71); /* clock time */ 12 dcl date_string char (24); /* time in English */ 13 dcl iox_$user_output ptr ext; 14 15 dcl ioa_$ioa_switch entry options (variable); 16 dcl clock_ entry returns (fixed bin (71)); 17 dcl date_time_ entry (fixed bin (71), char (*)); 18 19 date_number = clock_ (); 20 call date_time_ (date_number, date_string); 21 call ioa_$ioa_switch (iox_$user_output, "^/^a ^a ^a ^/", message_1, message_2, date_string); 22 23 return; 24 25 end dfast_header_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 11/04/82 1552.4 dfast_header_.pl1 >spec>on>comp-dir>dfast_header_.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. clock_ 000014 constant entry external dcl 16 ref 19 date_number 000100 automatic fixed bin(71,0) dcl 11 set ref 19* 20* date_string 000102 automatic char(24) unaligned dcl 12 set ref 20* 21* date_time_ 000016 constant entry external dcl 17 ref 20 ioa_$ioa_switch 000012 constant entry external dcl 15 ref 21 iox_$user_output 000010 external static pointer dcl 13 set ref 21* message_1 parameter char unaligned dcl 8 set ref 6 21* message_2 parameter char unaligned dcl 9 set ref 6 21* NAME DECLARED BY EXPLICIT CONTEXT. dfast_header_ 000015 constant entry external dcl 6 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 202 222 122 212 Length 370 122 20 132 60 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME dfast_header_ 110 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME dfast_header_ 000100 date_number dfast_header_ 000102 date_string dfast_header_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return ext_entry_desc THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. clock_ date_time_ ioa_$ioa_switch THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. iox_$user_output LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 6 000011 19 000035 20 000043 21 000060 23 000121 ----------------------------------------------------------- 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