COMPILATION LISTING OF SEGMENT !BBBJQfJpmNbLck Compiled by: Multics PL/I Compiler, Release 28e, of February 14, 1985 Compiled at: Honeywell Multics Op. - System M Compiled on: 05/28/86 1043.3 mst Wed Options: table map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1986 * 4* * * 5* *********************************************************** */ 6 7 8 /* HISTORY COMMENTS: 9* 1) change(86-03-21,Blair), approve(86-03-21,MCR7358), 10* audit(86-04-21,RBarstad), install(86-05-28,MR12.0-1062): 11* This program creates the xmail data structure for the help search 12* directories. 13* END HISTORY COMMENTS */ 14 15 xmail_data_: 16 proc; 17 18 dcl create_data_segment_ entry (ptr, fixed bin (35)); 19 20 dcl 1 cdsa aligned like cds_args; 21 22 dcl code fixed bin (35); 23 24 dcl name char (12) aligned static init 25 ("xmail_data_") options (constant), 26 exclude_pad (1) char (32) aligned static options (constant) init 27 ("pad*"); 28 29 dcl (dim, 30 addr, 31 size, 32 string) builtin; 33 1 1 /* BEGIN INCLUDE FILE xmail_help_data_.incl.pl1 */ 1 2 1 3 /****^ HISTORY COMMENTS: 1 4* 1) change(86-03-21,Blair), approve(86-03-21,MCR7358), 1 5* audit(86-04-22,RBarstad), install(86-05-28,MR12.0-1062): 1 6* Structure defining the help search paths that will be used by xmail. 1 7* END HISTORY COMMENTS */ 1 8 1 9 /* Created 06/17/81 by Suzanne Krupp */ 1 10 1 11 dcl xmail_data_$help_dirs fixed bin ext static; 1 12 1 13 dcl 1 xmail_HELP_DIRS based (addr(xmail_data_$help_dirs)), 1 14 2 N fixed bin, 1 15 2 path (0 refer (xmail_HELP_DIRS.N)) char (168); 1 16 1 17 /* END INCLUDE FILE xmail_help_data_.incl.pl1 */ 34 35 36 dcl 1 xmail_help_data aligned, 37 2 help_dirs, 38 3 N fixed bin, 39 3 dir_array (1) char(168); 40 41 42 /* Set up help directory search paths */ 43 44 xmail_help_data.help_dirs.N = dim(xmail_help_data.dir_array, 1); 45 46 xmail_help_data.dir_array(1) = ">doc>ss>executive_mail"; 47 48 /* Now set up call to create data base */ 49 50 cdsa.sections (1).p = addr (xmail_help_data); 51 cdsa.sections (1).len = size (xmail_help_data); 52 cdsa.sections (1).struct_name = "xmail_help_data"; 53 cdsa.seg_name = name; 54 cdsa.num_exclude_names = 1; 55 cdsa.exclude_array_ptr = addr (exclude_pad); 56 string (cdsa.switches) = "0"b; 57 cdsa.switches.have_text = "1"b; 58 call create_data_segment_ (addr (cdsa), code); 59 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 */ 60 61 62 end xmail_data_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 05/28/86 1025.9 !BBBJQfJpmNbLck.pl1 >special_ldd>install>MR12.0-1062>xmail_data_.cds 34 1 05/28/86 0938.5 xmail_help_data_.incl.pl1 >special_ldd>install>MR12.0-1062>xmail_help_data_.incl.pl1 60 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 36 set ref 44* addr builtin function dcl 29 ref 50 55 58 58 cds_args based structure level 1 dcl 2-3 cdsa 000100 automatic structure level 1 dcl 20 set ref 58 58 code 000145 automatic fixed bin(35,0) dcl 22 set ref 58* create_data_segment_ 000012 constant entry external dcl 18 ref 58 dim builtin function dcl 29 ref 44 dir_array 1 000146 automatic char(168) array level 3 dcl 36 set ref 44 46* exclude_array_ptr 42 000100 automatic pointer level 2 dcl 20 set ref 55* exclude_pad 000000 constant char(32) initial array dcl 24 set ref 55 have_text 44(02) 000100 automatic bit(1) level 3 packed unaligned dcl 20 set ref 57* help_dirs 000146 automatic structure level 2 dcl 36 len 2 000100 automatic fixed bin(18,0) array level 3 dcl 20 set ref 51* name 000010 constant char(12) initial dcl 24 ref 53 num_exclude_names 40 000100 automatic fixed bin(17,0) level 2 dcl 20 set ref 54* p 000100 automatic pointer array level 3 dcl 20 set ref 50* sections 000100 automatic structure array level 2 dcl 20 seg_name 30 000100 automatic char(32) level 2 dcl 20 set ref 53* size builtin function dcl 29 ref 51 string builtin function dcl 29 set ref 56* struct_name 3 000100 automatic char(32) array level 3 dcl 20 set ref 52* switches 44 000100 automatic structure level 2 dcl 20 set ref 56* xmail_help_data 000146 automatic structure level 1 dcl 36 set ref 50 51 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. exclude_names based char(32) array unaligned dcl 2-18 xmail_HELP_DIRS based structure level 1 unaligned dcl 1-13 xmail_data_$help_dirs 000014 external static fixed bin(17,0) dcl 1-11 NAME DECLARED BY EXPLICIT CONTEXT. xmail_data_ 000026 constant entry external dcl 15 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 146 164 74 156 Length 1176 74 16 776 52 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME xmail_data_ 154 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME xmail_data_ 000100 cdsa xmail_data_ 000145 code xmail_data_ 000146 xmail_help_data xmail_data_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. create_data_segment_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. xmail_data_$help_dirs LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 15 000025 44 000033 46 000035 50 000040 51 000042 52 000044 53 000047 54 000052 55 000054 56 000056 57 000057 58 000061 62 000073 Object Segment >special_ldd>install>MR12.0-1062>xmail_data_ Created on 05/28/86 1043.3 mst Wed by GJohnson.SysMaint.a using create_data_segment_, Version II of Thursday, May 22, 1986 Object Text Defs Link Symb Static Start 0 0 54 102 112 112 Length 303 54 26 10 155 0 3 Definitions: segname: xmail_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