COMPILATION LISTING OF SEGMENT !BBBJPBhlkMwHhK Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 08/23/84 0833.5 mst Thu Options: table map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1984 * 4* * * 5* *********************************************************** */ 6 ssu_info_directories_: 7 procedure (); 8 9 /* This procedure creates the segment 'ssu_info_directories_' which contains 10* the pathnames of directories containing info segs provided with the 11* subsystem utitlities. 12* 13* Written 84-06-22 by Paul W. Benjamin 14**/ 15 16 dcl 1 ssu_info_dir_data aligned, 17 2 standard_requests char (168); 18 19 dcl 1 cds_data aligned like cds_args; 20 21 dcl code fixed binary (35); 22 23 dcl NAME character (32) static options (constant) 24 initial ("ssu_info_directories_"); 25 26 dcl com_err_ entry () options (variable); 27 dcl create_data_segment_ entry (pointer, fixed binary (35)); 28 29 dcl (addr, currentsize, null, string) builtin; 30 1 1 /* BEGIN INCLUDE FILE cds_args.incl.pl1 */ 1 2 1 3 dcl 1 cds_args based aligned, 1 4 2 sections (2), 1 5 3 p ptr, /* pointer to data for text/static section */ 1 6 3 len fixed bin (18), /* size of text/static section */ 1 7 3 struct_name char (32), /* name of declared structure for this section */ 1 8 2 seg_name char (32), /* name to create segment by */ 1 9 2 num_exclude_names fixed bin, /* number of names in exclude array */ 1 10 2 exclude_array_ptr ptr, /* pointer to array of exclude names */ 1 11 2 switches, /* control switches */ 1 12 3 defs_in_link bit (1) unal, /* says put defs in linkage */ 1 13 3 separate_static bit (1) unal, /* says separate static section is wanted */ 1 14 3 have_text bit (1) unal, /* ON if text section given */ 1 15 3 have_static bit (1) unal, /* ON if static section given */ 1 16 3 pad bit (32) unal; 1 17 1 18 dcl exclude_names (1) char (32) based; /* pointed to be cds_args.exclude_array_ptr */ 1 19 1 20 /* END INCLUDE FILE cds_args.incl.pl1 */ 31 32 33 34 ssu_info_dir_data.standard_requests 35 = ">doc>subsystem>ssu_info_dirs>standard_requests"; 36 37 cds_data.sections (1).p = addr (ssu_info_dir_data); 38 cds_data.sections (1).len = currentsize (ssu_info_dir_data); 39 cds_data.sections (1).struct_name = "ssu_info_dir_data"; 40 41 cds_data.sections (2).p = null (); 42 43 cds_data.seg_name = NAME; 44 45 cds_data.num_exclude_names = 0; 46 cds_data.exclude_array_ptr = null (); 47 48 string (cds_data.switches) = "0"b; 49 cds_data.switches.have_text = "1"b; 50 51 /* Call create_data_segment_ */ 52 53 call create_data_segment_ (addr (cds_data), code); 54 55 if code ^= 0 then 56 call com_err_ (code, NAME); 57 58 return; 59 60 end ssu_info_directories_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 08/23/84 0825.1 !BBBJPBhlkMwHhK.pl1 >spec>on>6889>ssu_info_directories_.cds 31 1 04/01/76 2209.5 cds_args.incl.pl1 >ldd>include>cds_args.incl.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. NAME 000000 constant char(32) initial unaligned dcl 23 set ref 43 55* addr builtin function dcl 29 ref 37 53 53 cds_args based structure level 1 dcl 1-3 cds_data 000152 automatic structure level 1 dcl 19 set ref 53 53 code 000217 automatic fixed bin(35,0) dcl 21 set ref 53* 55 55* com_err_ 000012 constant entry external dcl 26 ref 55 create_data_segment_ 000014 constant entry external dcl 27 ref 53 currentsize builtin function dcl 29 ref 38 exclude_array_ptr 42 000152 automatic pointer level 2 dcl 19 set ref 46* have_text 44(02) 000152 automatic bit(1) level 3 packed unaligned dcl 19 set ref 49* len 2 000152 automatic fixed bin(18,0) array level 3 dcl 19 set ref 38* null builtin function dcl 29 ref 41 46 num_exclude_names 40 000152 automatic fixed bin(17,0) level 2 dcl 19 set ref 45* p 000152 automatic pointer array level 3 dcl 19 set ref 37* 41* sections 000152 automatic structure array level 2 dcl 19 seg_name 30 000152 automatic char(32) level 2 dcl 19 set ref 43* ssu_info_dir_data 000100 automatic structure level 1 dcl 16 set ref 37 38 standard_requests 000100 automatic char(168) level 2 dcl 16 set ref 34* string builtin function dcl 29 set ref 48* struct_name 3 000152 automatic char(32) array level 3 dcl 19 set ref 39* switches 44 000152 automatic structure level 2 dcl 19 set ref 48* NAME DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. exclude_names based char(32) array unaligned dcl 1-18 NAME DECLARED BY EXPLICIT CONTEXT. ssu_info_directories_ 000036 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 176 214 121 206 Length 1150 121 16 720 55 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME ssu_info_directories_ 162 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME ssu_info_directories_ 000100 ssu_info_dir_data ssu_info_directories_ 000152 cds_data ssu_info_directories_ 000217 code ssu_info_directories_ 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_ create_data_segment_ NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 6 000035 34 000043 37 000046 38 000050 39 000052 41 000055 43 000057 45 000062 46 000063 48 000064 49 000065 53 000067 55 000101 58 000120 Object Segment >spec>on>6889>ssu_info_directories_ Created on 08/23/84 0833.6 mst Thu by GJohnson.SysMaint.a using create_data_segment_, Version II of Monday, August 15, 1983 Object Text Defs Link Symb Static Start 0 0 52 106 116 116 Length 261 52 34 10 127 0 3 Definitions: segname: ssu_info_directories_ text|0 standard_requests symb|0 symbol_table No Links. ----------------------------------------------------------- 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