COMPILATION LISTING OF SEGMENT get_operator_names_ptr_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 11/02/83 1307.0 mst Wed Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* * Copyright (c) 1972 by Massachusetts Institute of * 6* * Technology and Honeywell Information Systems, Inc. * 7* * * 8* *********************************************************** */ 9 10 11 get_operator_names_ptr_: proc (name, onp); 12 13 /* modified 7/81 by Melanie Weaver for algol68 */ 14 /* modified 5/82 by Melanie Weaver to really work for basic, algol68, etc. */ 15 16 /* Parameters */ 17 18 dcl name char (*); /* name of translator or operator segment */ 19 dcl onp ptr; /* returned pointer to appropriate operator names segment */ 20 21 /* Builtins */ 22 23 dcl (addr, null) builtin; 24 25 /* External */ 26 27 dcl pl1_operator_names_$pl1_operator_names_ ext; 28 dcl basic_operator_names_$basic_operator_names_ ext; 29 dcl cobol_operator_names_$cobol_operator_names_ ext; 30 dcl algol68_operator_names_$algol68_operator_names_ ext; 31 dcl pascal_operator_names_$pascal_operator_names_ ext; 32 33 /* */ 34 35 if name = "PL/I" 36 | name = "v2pl1" 37 | name = "pl1" 38 | name = "fortran" 39 | name = "fortran2" 40 | name = "pl1_operators_" 41 then onp = addr (pl1_operator_names_$pl1_operator_names_); 42 43 else if name = "cobol" 44 | name = "COBOL" 45 | name = "cobol_operators_" 46 then onp = addr (cobol_operator_names_$cobol_operator_names_); 47 48 else if name = "basic" 49 | name = "BASIC" 50 | name = "basic_operators_" 51 then onp = addr (basic_operator_names_$basic_operator_names_); 52 53 else if name = "algol68" 54 | name = "Algol68" 55 | name = "ALGOL68" 56 | name = "algol68_operators_" 57 then onp = addr (algol68_operator_names_$algol68_operator_names_); 58 59 else if name = "pascal" 60 | name = "Pascal" 61 | name = "PASCAL" 62 | name = "pascal_operators_" 63 then onp = addr (pascal_operator_names_$pascal_operator_names_); 64 65 else onp = null; 66 67 end; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 11/02/83 1230.0 get_operator_names_ptr_.pl1 >spec>on>pascal>get_operator_names_ptr_.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. addr builtin function dcl 23 ref 35 43 48 53 59 algol68_operator_names_$algol68_operator_names_ 000016 external static fixed bin(17,0) dcl 30 set ref 53 basic_operator_names_$basic_operator_names_ 000012 external static fixed bin(17,0) dcl 28 set ref 48 cobol_operator_names_$cobol_operator_names_ 000014 external static fixed bin(17,0) dcl 29 set ref 43 name parameter char unaligned dcl 18 ref 11 35 35 35 35 35 35 43 43 43 48 48 48 53 53 53 53 59 59 59 59 n ----------------------------------------------------------- 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