COMPILATION LISTING OF SEGMENT !BBBJWzDLzcqWdG Compiled by: Multics PL/I Compiler, Release 29, of July 28, 1986 Compiled at: Honeywell Bull, Phoenix AZ, SysM Compiled on: 12/07/87 1324.6 mst Mon Options: table map 1 2 /* HISTORY COMMENTS: 3* 1) change(86-01-17,LJAdams), approve(86-02-18,MCR7350), 4* audit(86-04-24,Gilcrease), install(86-04-24,MR12.0-1048): 5* This program creates the xforum data structure for the help search 6* directories. 7* END HISTORY COMMENTS */ 8 9 xforum_data_: 10 proc; 11 12 dcl create_data_segment_ entry (ptr, fixed bin (35)); 13 14 dcl 1 cdsa aligned like cds_args; 15 16 dcl code fixed bin (35); 17 18 dcl name char (12) aligned static init 19 ("xforum_data_") options (constant), 20 exclude_pad (1) char (32) aligned static options (constant) init 21 ("pad*"); 22 23 dcl (dim, 24 addr, 25 size, 26 string) builtin; 27 1 1 /* BEGIN INCLUDE FILE xforum_data_.incl.pl1 */ 1 2 1 3 1 4 /****^ HISTORY COMMENTS: 1 5* 1) change(86-01-17,LJAdams), approve(86-03-07,MCR7327), 1 6* audit(86-03-10,Lippard), install(86-04-24,MR12.0-1048): 1 7* Structure defining the help search paths that will be used by xforum. 1 8* 2) change(87-11-11,LJAdams), approve(87-11-11,MCR7800), 1 9* audit(87-12-01,Gilcrease), install(87-12-07,MR12.2-1008): 1 10* Change version number to 2.1. 1 11* END HISTORY COMMENTS */ 1 12 1 13 dcl xforum_data_$help_dirs fixed bin ext static; 1 14 1 15 dcl 1 xforum_HELP_DIRS based (addr(xforum_data_$help_dirs)), 1 16 2 N fixed bin, 1 17 2 path (0 refer (xforum_HELP_DIRS.N)) char(168); 1 18 1 19 dcl xforum_version char(3) int static options (constant) init ("2.1"); 1 20 1 21 /* END INCLUDE FILE xforum_data.incl.pl1 */ 28 29 30 dcl 1 xforum_data aligned, 31 2 help_dirs, 32 3 N fixed bin, 33 3 dir_array (2) char(168); 34 35 36 /* Set up help directory search paths */ 37 38 xforum_data.help_dirs.N = dim(xforum_data.dir_array, 1); 39 40 xforum_data.dir_array(1) = ">doc>ss>xforum"; 41 xforum_data.dir_array(2) = ">doc>info"; 42 43 /* Now set up call to create data base */ 44 45 cdsa.sections (1).p = addr (xforum_data); 46 cdsa.sections (1).len = size (xforum_data); 47 cdsa.sections (1).struct_name = "xforum_data"; 48 cdsa.seg_name = name; 49 cdsa.num_exclude_names = 1; 50 cdsa.exclude_array_ptr = addr (exclude_pad); 51 string (cdsa.switches) = "0"b; 52 cdsa.switches.have_text = "1"b; 53 call create_data_segment_ (addr (cdsa), code); 54 2 1 /* BEGIN INCLUDE FILE cds_args.incl.pl1 */ 2 2 2 3 dcl 1 cds_args based aligned, 2 4 2 sections (2), 2 5 3 p ptr, /* pointer to data for text/static section */ 2 6 3 len fixed bin (18), /* size of text/static section */ 2 7 3 struct_name char (32), /* name of declared structure for this section */ 2 8 2 seg_name char (32), /* name to create segment by */ 2 9 2 num_exclude_names fixed bin, /* number of names in exclude array */ 2 10 2 exclude_array_ptr ptr, /* pointer to array of exclude names */ 2 11 2 switches, /* control switches */ 2 12 3 defs_in_link bit (1) unal, /* says put defs in linkage */ 2 13 3 separate_static bit (1) unal, /* says separate static section is wanted */ 2 14 3 have_text bit (1) unal, /* ON if text section given */ 2 15 3 have_static bit (1) unal, /* ON if static section given */ 2 16 3 pad bit (32) unal; 2 17 2 18 dcl exclude_names (1) char (32) based; /* pointed to be cds_args.exclude_array_ptr */ 2 19 2 20 /* END INCLUDE FILE cds_args.incl.pl1 */ 55 56 57 end xforum_data_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/07/87 1321.7 !BBBJWzDLzcqWdG.pl1 >spec>install>MR12.2-1008>xforum_data_.cds 28 1 12/07/87 1319.2 xforum_data_.incl.pl1 >spec>install>MR12.2-1008>xforum_data_.incl.pl1 55 2 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. N 000146 automatic fixed bin(17,0) level 3 dcl 30 set ref 38* addr builtin function dcl 23 ref 45 50 53 53 cds_args based structure level 1 dcl 2-3 cdsa 000100 automatic structure level 1 dcl 14 set ref 53 53 code 000145 automatic fixed bin(35,0) dcl 16 set ref 53* create_data_segment_ 000012 constant entry external dcl 12 ref 53 dim builtin function dcl 23 ref 38 dir_array 1 000146 automatic char(168) array level 3 dcl 30 set ref 38 40* 41* exclude_array_ptr 42 000100 automatic pointer level 2 dcl 14 set ref 50* exclude_pad 000000 constant char(32) initial array dcl 18 set ref 50 have_text 44(02) 000100 automatic bit(1) level 3 packed unaligned dcl 14 set ref 52* help_dirs 000146 automatic structure level 2 dcl 30 len 2 000100 automatic fixed bin(18,0) array level 3 dcl 14 set ref 46* name 000010 constant char(12) initial dcl 18 ref 48 num_exclude_names 40 000100 automatic fixed bin(17,0) level 2 dcl 14 set ref 49* p 000100 automatic pointer array level 3 dcl 14 set ref 45* sections 000100 automatic structure array level 2 dcl 14 seg_name 30 000100 automatic char(32) level 2 dcl 14 set ref 48* size builtin function dcl 23 ref 46 string builtin function dcl 23 set ref 51* struct_name 3 000100 automatic char(32) array level 3 dcl 14 set ref 47* switches 44 000100 automatic structure level 2 dcl 14 set ref 51* xforum_data 000146 automatic structure level 1 dcl 30 set ref 45 46 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. exclude_names based char(32) array unaligned dcl 2-18 xforum_HELP_DIRS based structure level 1 unaligned dcl 1-15 xforum_data_$help_dirs 000014 external static fixed bin(17,0) dcl 1-13 xforum_version constant char(3) initial unaligned dcl 1-19 NAME DECLARED BY EXPLICIT CONTEXT. xforum_data_ 000026 constant entry external dcl 9 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 152 170 77 162 Length 1200 77 16 774 53 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME xforum_data_ 196 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME xforum_data_ 000100 cdsa xforum_data_ 000145 code xforum_data_ 000146 xforum_data xforum_data_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. create_data_segment_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. xforum_data_$help_dirs LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 9 000025 38 000033 40 000035 41 000040 45 000043 46 000045 47 000047 48 000052 49 000055 50 000057 51 000061 52 000062 53 000064 57 000076 Object Segment >spec>install>MR12.2-1008>xforum_data_ Created on 12/07/87 1324.7 mst Mon by GJohnson.SysMaint.a using create_data_segment_, Version II of Thursday, November 20, 1986 Object Text Defs Link Symb Static Start 0 0 126 156 166 166 Length 360 126 30 10 156 0 3 Definitions: segname: xforum_data_ text|0 help_dirs 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