COMPILATION LISTING OF SEGMENT get_def_name_ Compiled by: Multics PL/I Compiler, Release 28, of March 4, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 04/07/83 1223.1 mst Thu Options: optimize map 1 /* ****************************************************** 2* * * 3* * * 4* * Copyright (c) 1972 by Massachusetts Institute of * 5* * Technology and Honeywell Information Systems, Inc. * 6* * * 7* * * 8* ****************************************************** */ 9 10 get_def_name_: proc (linkptr, defptr, offset, section, ename, code); 11 12 /* This procedure is currently a writearound for hcs_$get_defname_. 13* If and when gates become readable within the call bracket, the code in 14* hcs_$get_defname_ will be moved to this procedure. */ 15 /* coded by M. Weaver 24 July 1973 */ 16 17 18 declare (linkptr, defptr) ptr; 19 declare offset bit(18) aligned; 20 declare ename char(*); 21 declare section fixed bin; 22 declare code fixed bin(35); 23 24 declare hcs_$get_defname_ entry (ptr, ptr, bit(18) aligned, fixed bin, char(*), fixed bin(35)); 25 26 call hcs_$get_defname_ (linkptr, defptr, offset, section, ename, code); 27 return; 28 end; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 04/07/83 1051.5 get_def_name_.pl1 >spec>on>pl1-dir>get_def_name_.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. code parameter fixed bin(35,0) dcl 22 set ref 10 26* defptr parameter pointer dcl 18 set ref 10 26* ename parameter char unaligned dcl 20 set ref 10 26* hcs_$get_defname_ 000010 constant entry external dcl 24 ref 26 linkptr parameter pointer dcl 18 set ref 10 26* offset parameter bit(18) dcl 19 set ref 10 26* section parameter fixed bin(17,0) dcl 21 set ref 10 26* NAME DECLARED BY EXPLICIT CONTEXT. get_def_name_ 000013 constant entry external dcl 10 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 122 134 63 132 Length 276 63 12 126 36 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME get_def_name_ 92 external procedure is an external procedure. THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc return ext_entry_desc THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. hcs_$get_defname_ NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 10 000005 26 000026 27 000062 ----------------------------------------------------------- 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