COMPILATION LISTING OF SEGMENT print_symbols_path Compiled by: Multics PL/I Compiler, Release 26a, of September 3, 1980 Compiled at: Honeywell LISD Phoenix, System M Compiled on: 01/06/81 1248.2 mst Tue Options: optimize map 1 /* ****************************************************** 2* * * 3* * * 4* * Copyright, (C) Honeywell Information Systems * 5* * Inc., 1980. * 6* * * 7* * * 8* ****************************************************** */ 9 10 print_symbols_path: psbp: procedure; 11 12 /* This procedure implements the print_symbols_path command. 13* * Created on 10/13/75 by Bill Silver as show_notescript. 14* * Changed on 06/10/77 by Bill Silver to print_symbols_path. 15* * 16* * The print_symbols_path (psbp) command prints the pathanme of the current 17* * Speedtype symbol dictionary. This command takes no arguments. 18**/ 19 20 dcl ecode fixed bin (35); /* Error table code. */ 21 dcl dir_name char (168); /* Directory of current symbol dictionary. */ 22 dcl ent_name char (32); /* Entry name of current symbol dictionary. */ 23 dcl num_args fixed bin; /* Number of command arguments. */ 24 25 dcl error_table_$wrong_no_of_args fixed bin (35) external; 26 27 dcl com_err_ entry options (variable); 28 dcl cu_$arg_count entry (fixed bin); 29 dcl ioa_ entry options (variable); 30 dcl speedtype_info_$name entry (char (*), char (*), fixed bin (35)); 31 32 33 call cu_$arg_count (num_args); 34 if num_args ^= 0 35 then do; 36 call com_err_ (error_table_$wrong_no_of_args, "Speedtype", "Usage is: psbp"); 37 return; 38 end; 39 40 call speedtype_info_$name (dir_name, ent_name, ecode); 41 if ecode = 0 42 then call ioa_ ("Using Speedtype symbol dictionary: ^a>^a", dir_name, ent_name); 43 44 end print_symbols_path; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 01/06/81 1247.6 print_symbols_path.pl1 >spec>on>speed>print_symbols_path.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. com_err_ 000012 constant entry external dcl 27 ref 36 cu_$arg_count 000014 constant entry external dcl 28 ref 33 dir_name 000101 automatic char(168) unaligned dcl 21 set ref 40* 41* ecode 000100 automatic fixed bin(35,0) dcl 20 set ref 40* 41 ent_name 000153 automatic char(32) unaligned dcl 22 set ref 40* 41* error_table_$wrong_no_of_args 000010 external static fixed bin(35,0) dcl 25 set ref 36* ioa_ 000016 constant entry external dcl 29 ref 41 num_args 000163 automatic fixed bin(17,0) dcl 23 set ref 33* 34 speedtype_info_$name 000020 constant entry external dcl 30 ref 40 NAMES DECLARED BY EXPLICIT CONTEXT. print_symbols_path 000037 constant entry external dcl 10 psbp 000030 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 262 304 160 272 Length 460 160 22 137 102 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME psbp 152 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME psbp 000100 ecode psbp 000101 dir_name psbp 000153 ent_name psbp 000163 num_args psbp THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_ cu_$arg_count ioa_ speedtype_info_$name THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. error_table_$wrong_no_of_args LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 10 000027 33 000044 34 000052 36 000054 37 000107 40 000110 41 000131 44 000157 ----------------------------------------------------------- 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