ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.0-1206>xmail_err_.alm ASSEMBLED ON: 11/05/86 1050.4 mst Wed OPTIONS USED: list ASSEMBLED BY: ALM Version 6.7 October 1986 ASSEMBLER CREATED: 10/08/86 1557.5 mst Wed  1 " ******************************************************  2 " * *  3 " * Copyright (c) 1986 by Massachusetts Institute of *  4 " * Technology and Honeywell Information Systems, Inc. *  5 " * *  6 " * Copyright (c) 1972 by Massachusetts Institute of *  7 " * Technology and Honeywell Information Systems, Inc. *  8 " * *  9 " ******************************************************  10  11 " HISTORY COMMENTS: 12 " 1) change(86-02-27,Blair), approve(86-02-27,MCR7358),  13 " audit(86-04-18,RBarstad), install(86-05-28,MR12.0-1062):  14 " Added mailing_list and date_not_found.  15 " END HISTORY COMMENTS 16  17  18 include et_macros 1-1 " Begin include file ...... et_macros.incl.alm  1-2 " Written 6/15/77 by Noel I. Morris 1-3 " Modified '82 so error code entries are in first page of segment.  1-4  1-5 " This include file contains macros for generating error tables 1-6 " for both system and non-system use.  1-7  1-8 " ET MACRO  1-9 "  1-10 " This macro is used to initialize the error table for either  1-11 " system or non-system use. It is invoked at the beginning of  1-12 " the error table as follows:  1-13 "  1-14 " et table_name{,system}  1-15 "  1-16  1-17 macro et  1 1-18 maclist on 2 1-19  3 1-20 name &1  4 1-21  5 1-22 &^=&2,system&[  6 1-23  7 1-24 include stack_header  8 1-25  9 1-26  10 1-27  11 1-28 use codes  12 1-29 .code_start:  13 1-30  14 1-31 use past_codes 15 1-32 .code_end:  16 1-33  17 1-34 join /link/codes,past_codes  18 1-35  19 1-36 use messages  20 1-37  21 1-38 .trapproc:  22 1-39 epaq 0,ic  23 1-40 eax0 0,au  24 1-41 epbpsb sp|0  25 1-42 lprplp sb|stack_header.lot_ptr,*au 26 1-43 eax1 .code_start  27 1-44 .loop: stx0 lp|0,x1 28 1-45 eax1 1,x1  29 1-46 cmpx1 .code_end,du 30 1-47 tmi .loop-*,ic 31 1-48 short_return  32 1-49  33 1-50 firstref <*text>|.trapproc 34 1-51  35 1-52 &; use codes  36 1-53 use messages  37 1-54  38 1-55 join /text/codes,messages  39 1-56  40 1-57 &]  41 1-58  42 1-59 bool .segno,77777  43 1-60  44 1-61 maclist off  45 1-62  46 1-63 &end  1-64  1-65  1-66  1-67 " EC MACRO  1-68 "  1-69 " This macro is used to define an error code as shown:  1-70 "  1-71 " ec name,{short_mess},(long_mess)  1-72 "  1-73 " If more than a single name is to be defined for a given message,  1-74 " a list of names separated by commas and enclosed in parentheses  1-75 " must be given. short_mess must be 8 or less characters. If omitted,  1-76 " the short_mess will be set to the name. long_mess is enclosed  1-77 " in parentheses in order to cause ALM to ignore embedded blanks. Please  1-78 " note that double quote characters in either short_mess or long_mess  1-79 " must be doubled in order to make the ALM assembly work properly.  1-80 " Note that a macro invocation line terminated by a comma will cause that  1-81 " statement to be continued on the next line.  1-82  1-83 macro ec  1 1-84 use codes  2 1-85  3 1-86 maclist on,save  4 1-87 &(1 segdef &i  5 1-88 &) maclist restore  6 1-89 &(1&i:  7 1-90 &) maclist object,save  8 1-91 zero .segno,&U 9 1-92 maclist restore  10 1-93 use messages  11 1-94 &^=&l2,0&[ shortname &2  12 1-95 &; shortname &1  13 1-96 &]  14 1-97 &U: 15 1-98 maclist on,save  16 1-99 acc "&3"  17 1-100  18 1-101 maclist restore  19 1-102 &end  1-103  1-104 macro shortname 1 1-105 maclist on,save  2 1-106 aci "&1",8  3 1-107 maclist restore  4 1-108 &end  1-109  1-110  1-111  1-112 " A typical error table source program might have the following format: 1-113 "  1-114 " include et_macros 1-115 "  1-116 " et name_of_error_table  1-117 "  1-118 " ec error_code_1,ecode1,(This is error code 1.)  1-119 "  1-120 " ec error_code_2,ecode2,(This is error code 2.)  1-121 "  1-122 " : : : :  1-123 "  1-124 " ec error_code_n,ecoden,(This is the nth error code.)  1-125 "  1-126 " end  1-127 "  1-128  1-129 " End of include file ...... et_macros.incl.alm 1-130  19  20 et xmail_err_   000000 name xmail_err_     include stack_header  2-1 " BEGIN INCLUDE FILE ... stack_header.incl.alm 3/72 Bill Silver  2-2 "  2-3 " modified 7/76 by M. Weaver for *system links and more system use of areas 2-4 " modified 3/77 by M. Weaver to add rnt_ptr  2-5 " modified 7/77 by S. Webber to add run_unit_depth and assign_linkage_ptr  2-6 " modified 6/83 by J. Ives to add trace_frames and in_trace.  2-7  2-8 " HISTORY COMMENTS: 2-9 " 1) change(86-06-24,DGHowe), approve(86-06-24,MCR7396),  2-10 " audit(86-08-05,Schroth), install(86-11-03,MR12.0-1206):  2-11 " added the heap_header_ptr definition  2-12 " 2) change(86-08-12,Kissel), approve(86-08-12,MCR7473),  2-13 " audit(86-10-10,Fawcett), install(86-11-03,MR12.0-1206):  2-14 " Modified to support control point management. These changes were 2-15 " actually made in February 1985 by G. Palter.  2-16 " 3) change(86-10-22,Fawcett), approve(86-10-22,MCR7473),  2-17 " audit(86-10-22,Farley), install(86-11-03,MR12.0-1206):  2-18 " Remove the old_lot pointer and replace it with cpm_data_ptr. Use the 18  2-19 " bit pad after cur_lot_size for the cpm_enabled. This was done to save 2-20 " some space int the stack header and change the cpd_ptr unal to  2-21 " cpm_data_ptr (ITS pair).  2-22 " END HISTORY COMMENTS 2-23  000004 2-24 equ stack_header.cpm_data_ptr,4 ptr to control point for this stack  000006 2-25 equ stack_header.combined_stat_ptr,6 ptr to separate static area  2-26  000010 2-27 equ stack_header.clr_ptr,8 ptr to area containing linkage sections  000012 2-28 equ stack_header.max_lot_size,10 number of words allowed in lot (DU)  000012 2-29 equ stack_header.main_proc_invoked,10 nonzero if main proc was invoked in run unit (DL)  000012 2-30 equ stack_header.run_unit_depth,10 number of active run units stacked (DL) 000013 2-31 equ stack_header.cur_lot_size,11 DU number of words (entries) in lot  000013 2-32 equ stack_header.cpm_enabled,11 DL non-zero if control point management is enabled  000014 2-33 equ stack_header.system_free_ptr,12 ptr to system storage area 000016 2-34 equ stack_header.user_free_ptr,14 ptr to user storage area  2-35  000020 2-36 equ stack_header.parent_ptr,16 ptr to parent stack or null  000022 2-37 equ stack_header.stack_begin_ptr,18 ptr to first stack frame  000024 2-38 equ stack_header.stack_end_ptr,20 ptr to next useable stack frame 000026 2-39 equ stack_header.lot_ptr,22 ptr to the lot for the current ring  2-40  000030 2-41 equ stack_header.signal_ptr,24 ptr to signal proc for current ring  000032 2-42 equ stack_header.bar_mode_sp,26 value of sp before entering bar mode  000034 2-43 equ stack_header.pl1_operators_ptr,28 ptr: pl1_operators_$operator_table  000036 2-44 equ stack_header.call_op_ptr,30 ptr to standard call operator 2-45  000040 2-46 equ stack_header.push_op_ptr,32 ptr to standard push operator 000042 2-47 equ stack_header.return_op_ptr,34 ptr to standard return operator 000044 2-48 equ stack_header.ret_no_pop_op_ptr,36 ptr: stand. return/ no pop operator  000046 2-49 equ stack_header.entry_op_ptr,38 ptr to standard entry operator  2-50  000050 2-51 equ stack_header.trans_op_tv_ptr,40 ptr to table of translator operator ptrs  000052 2-52 equ stack_header.isot_ptr,42 pointer to ISOT  000054 2-53 equ stack_header.sct_ptr,44 pointer to System Condition Table 000056 2-54 equ stack_header.unwinder_ptr,46 pointer to unwinder for current ring 2-55  000060 2-56 equ stack_header.sys_link_info_ptr,48 ptr to *system link name table  000062 2-57 equ stack_header.rnt_ptr,50 ptr to reference name table  000064 2-58 equ stack_header.ect_ptr,52 ptr to event channel table  000066 2-59 equ stack_header.assign_linkage_ptr,54 ptr to area for hcs_$assign_linkage calls  000070 2-60 equ stack_header.heap_header_ptr,56 ptr to heap header.  000072 2-61 equ stack_header.trace_frames,58 stack of trace_catch_ frames 000073 2-62 equ stach_header.trace_top_ptr,59 trace pointer  000074 2-63 equ stack_header.in_trace,60 trace antirecurse bit  000100 2-64 equ stack_header_end,64 length of stack header  2-65  2-66  2-67  2-68  000000 2-69 equ trace_frames.count,0 number of trace frames on stack  000001 2-70 equ trace_frames.top_ptr,1 packed pointer to top one  2-71  2-72 " The following constant is an offset within the pl1 operators table.  2-73 " It references a transfer vector table.  2-74  000551 2-75 bool tv_offset,551 2-76  2-77  2-78 " The following constants are offsets within this transfer vector table.  2-79  001170 2-80 equ call_offset,tv_offset+271  001171 2-81 equ push_offset,tv_offset+272  001172 2-82 equ return_offset,tv_offset+273  001173 2-83 equ return_no_pop_offset,tv_offset+274 001174 2-84 equ entry_offset,tv_offset+275 2-85  2-86  2-87 " END INCLUDE FILE stack_header.incl.alm     use codes  000010 .code_start:   use past_codes 000044 .code_end:   join /link/codes,past_codes   use messages   000000 .trapproc:  000000 aa 000000 2130 04 epaq 0,ic  000001 aa 000000 6200 01 eax0 0,au  000002 aa 6 00000 3731 00 epbpsb sp|0  000003 aa 7 00026 7641 61 lprplp sb|stack_header.lot_ptr,*au 000004 8a 000010 6210 00 eax1 .code_start  000005 aa 4 00000 7401 11 .loop: stx0 lp|0,x1 000006 aa 000001 6210 11 eax1 1,x1  000007 8a 000044 1010 03 cmpx1 .code_end,du 000010 aa 777775 6040 04 tmi .loop-*,ic 000011 aa 7 00044 7101 20 short_return   000012 firstref <*text>|.trapproc    077777 bool .segno,77777   21  22 ec no_help_available,nohelp,(Sorry, there is no help available.)  000010 segdef no_help_available  000010 a0 077777 000014 000012 aa 156 157 150 145 aci "nohelp",8  000013 aa 154 160 040 040 000014 aa 042 123 157 162 acc "Sorry, there is no help available."  000015 aa 162 171 054 040 000016 aa 164 150 145 162 000017 aa 145 040 151 163 000020 aa 040 156 157 040 000021 aa 150 145 154 160 000022 aa 040 141 166 141 000023 aa 151 154 141 142 000024 aa 154 145 056 000  23  24 ec unable_to_get_help,canthelp,(Sorry, unable to get help.) 000011 segdef unable_to_get_help 000011 a0 077777 000027 000025 aa 143 141 156 164 aci "canthelp",8  000026 aa 150 145 154 160 000027 aa 032 123 157 162 acc "Sorry, unable to get help."  000030 aa 162 171 054 040 000031 aa 165 156 141 142 000032 aa 154 145 040 164 000033 aa 157 040 147 145 000034 aa 164 040 150 145 000035 aa 154 160 056 000  25  26 ec invalid_range,invran,(The range specified is not valid.) 000012 segdef invalid_range  000012 a0 077777 000040 000036 aa 151 156 166 162 aci "invran",8  000037 aa 141 156 040 040 000040 aa 041 124 150 145 acc "The range specified is not valid."  000041 aa 040 162 141 156 000042 aa 147 145 040 163 000043 aa 160 145 143 151 000044 aa 146 151 145 144 000045 aa 040 151 163 040 000046 aa 156 157 164 040 000047 aa 166 141 154 151 000050 aa 144 056 000 000  27  28 ec invalid_list,invlis,(The list specified is not valid.)  000013 segdef invalid_list  000013 a0 077777 000053 000051 aa 151 156 166 154 aci "invlis",8  000052 aa 151 163 040 040 000053 aa 040 124 150 145 acc "The list specified is not valid."  000054 aa 040 154 151 163 000055 aa 164 040 163 160 000056 aa 145 143 151 146 000057 aa 151 145 144 040 000060 aa 151 163 040 156 000061 aa 157 164 040 166 000062 aa 141 154 151 144 000063 aa 056 000 000 000  29  30 ec some_msgs_exist,somexst,(Only some of the messages specified exist.) 000014 segdef some_msgs_exist  000014 a0 077777 000066 000064 aa 163 157 155 145 aci "somexst",8  000065 aa 170 163 164 040 000066 aa 052 117 156 154 acc "Only some of the messages specified exist."  000067 aa 171 040 163 157 000070 aa 155 145 040 157 000071 aa 146 040 164 150 000072 aa 145 040 155 145 000073 aa 163 163 141 147 000074 aa 145 163 040 163 000075 aa 160 145 143 151 000076 aa 146 151 145 144 000077 aa 040 145 170 151 000100 aa 163 164 056 000  31  32 ec no_msgs_exist,noexst,(None of the messages specified exist.) 000015 segdef no_msgs_exist  000015 a0 077777 000103 000101 aa 156 157 145 170 aci "noexst",8  000102 aa 163 164 040 040 000103 aa 045 116 157 156 acc "None of the messages specified exist."  000104 aa 145 040 157 146 000105 aa 040 164 150 145 000106 aa 040 155 145 163 000107 aa 163 141 147 145 000110 aa 163 040 163 160 000111 aa 145 143 151 146 000112 aa 151 145 144 040 000113 aa 145 170 151 163 000114 aa 164 056 000 000  33  34 ec mailbox_empty,mbxemp,(There are no messages in this mailbox.)  000016 segdef mailbox_empty  000016 a0 077777 000117 000115 aa 155 142 170 145 aci "mbxemp",8  000116 aa 155 160 040 040 000117 aa 046 124 150 145 acc "There are no messages in this mailbox."  000120 aa 162 145 040 141 000121 aa 162 145 040 156 000122 aa 157 040 155 145 000123 aa 163 163 141 147 000124 aa 145 163 040 151 000125 aa 156 040 164 150 000126 aa 151 163 040 155 000127 aa 141 151 154 142 000130 aa 157 170 056 000  35  36 ec all_msgs_deleted,alldel,(All of the messages have been discarded.)  000017 segdef all_msgs_deleted  000017 a0 077777 000133 000131 aa 141 154 154 144 aci "alldel",8  000132 aa 145 154 040 040 000133 aa 050 101 154 154 acc "All of the messages have been discarded."  000134 aa 040 157 146 040 000135 aa 164 150 145 040 000136 aa 155 145 163 163 000137 aa 141 147 145 163 000140 aa 040 150 141 166 000141 aa 145 040 142 145 000142 aa 145 156 040 144 000143 aa 151 163 143 141 000144 aa 162 144 145 144 000145 aa 056 000 000 000  37  38 ec int_prog_err,interr,(An internal programming error has occured. Please see your site administrator for help.)  000020 segdef int_prog_err  000020 a0 077777 000150 000146 aa 151 156 164 145 aci "interr",8  000147 aa 162 162 040 040 000150 aa 130 101 156 040 acc "An internal programming error has occured. Please see your site administrator for help."  000151 aa 151 156 164 145 000152 aa 162 156 141 154 000153 aa 040 160 162 157 000154 aa 147 162 141 155 000155 aa 155 151 156 147 000156 aa 040 145 162 162 000157 aa 157 162 040 150 000160 aa 141 163 040 157 000161 aa 143 143 165 162 000162 aa 145 144 056 040 000163 aa 040 120 154 145 000164 aa 141 163 145 040 000165 aa 163 145 145 040 000166 aa 171 157 165 162 000167 aa 040 163 151 164 000170 aa 145 040 141 144 000171 aa 155 151 156 151 000172 aa 163 164 162 141 000173 aa 164 157 162 040 000174 aa 146 157 162 040 000175 aa 150 145 154 160 000176 aa 056 000 000 000  39  40 ec no_curr_msgs,nocurr,(There are no current messages specified.)  000021 segdef no_curr_msgs  000021 a0 077777 000201 000177 aa 156 157 143 165 aci "nocurr",8  000200 aa 162 162 040 040 000201 aa 050 124 150 145 acc "There are no current messages specified."  000202 aa 162 145 040 141 000203 aa 162 145 040 156 000204 aa 157 040 143 165 000205 aa 162 162 145 156 000206 aa 164 040 155 145 000207 aa 163 163 141 147 000210 aa 145 163 040 163 000211 aa 160 145 143 151 000212 aa 146 151 145 144 000213 aa 056 000 000 000  41  42 ec no_savebox,nsvbx,(The selected mail file does not exist.)  000022 segdef no_savebox 000022 a0 077777 000216 000214 aa 156 163 166 142 aci "nsvbx",8 000215 aa 170 040 040 040 000216 aa 046 124 150 145 acc "The selected mail file does not exist."  000217 aa 040 163 145 154 000220 aa 145 143 164 145 000221 aa 144 040 155 141 000222 aa 151 154 040 146 000223 aa 151 154 145 040 000224 aa 144 157 145 163 000225 aa 040 156 157 164 000226 aa 040 145 170 151 000227 aa 163 164 056 000  43  44 ec invalid_response,invresp,(The response is not an acceptable one.)  000023 segdef invalid_response  000023 a0 077777 000232 000230 aa 151 156 166 162 aci "invresp",8  000231 aa 145 163 160 040 000232 aa 046 124 150 145 acc "The response is not an acceptable one."  000233 aa 040 162 145 163 000234 aa 160 157 156 163 000235 aa 145 040 151 163 000236 aa 040 156 157 164 000237 aa 040 141 156 040 000240 aa 141 143 143 145 000241 aa 160 164 141 142 000242 aa 154 145 040 157 000243 aa 156 145 056 000  45  46 ec no_hardcopy,nhardcpy,(Sorry, but no information is available to explain how to get hardcopy to you.)  000024 segdef no_hardcopy  000024 a0 077777 000246 000244 aa 156 150 141 162 aci "nhardcpy",8  000245 aa 144 143 160 171 000246 aa 115 123 157 162 acc "Sorry, but no information is available to explain how to get hardcopy to you."  000247 aa 162 171 054 040 000250 aa 142 165 164 040 000251 aa 156 157 040 151 000252 aa 156 146 157 162 000253 aa 155 141 164 151 000254 aa 157 156 040 151 000255 aa 163 040 141 166 000256 aa 141 151 154 141 000257 aa 142 154 145 040 000260 aa 164 157 040 145 000261 aa 170 160 154 141 000262 aa 151 156 040 150 000263 aa 157 167 040 164 000264 aa 157 040 147 145 000265 aa 164 040 150 141 000266 aa 162 144 143 157 000267 aa 160 171 040 164 000270 aa 157 040 171 157 000271 aa 165 056 000 000  47  48 ec str_not_found,nostr,(No messages were found containing the specified string.)  000025 segdef str_not_found  000025 a0 077777 000274 000272 aa 156 157 163 164 aci "nostr",8 000273 aa 162 040 040 040 000274 aa 067 116 157 040 acc "No messages were found containing the specified string." 000275 aa 155 145 163 163 000276 aa 141 147 145 163 000277 aa 040 167 145 162 000300 aa 145 040 146 157 000301 aa 165 156 144 040 000302 aa 143 157 156 164 000303 aa 141 151 156 151 000304 aa 156 147 040 164 000305 aa 150 145 040 163 000306 aa 160 145 143 151 000307 aa 146 151 145 144 000310 aa 040 163 164 162 000311 aa 151 156 147 056  49  50 ec date_not_found,nodate,(No messages were found within the specified dates.)  000026 segdef date_not_found 000026 a0 077777 000314 000312 aa 156 157 144 141 aci "nodate",8  000313 aa 164 145 040 040 000314 aa 062 116 157 040 acc "No messages were found within the specified dates."  000315 aa 155 145 163 163 000316 aa 141 147 145 163 000317 aa 040 167 145 162 000320 aa 145 040 146 157 000321 aa 165 156 144 040 000322 aa 167 151 164 150 000323 aa 151 156 040 164 000324 aa 150 145 040 163 000325 aa 160 145 143 151 000326 aa 146 151 145 144 000327 aa 040 144 141 164 000330 aa 145 163 056 000  51  52 ec mailing_list,mlist,(The specified address is a mailing list.)  000027 segdef mailing_list  000027 a0 077777 000333 000331 aa 155 154 151 163 aci "mlist",8 000332 aa 164 040 040 040 000333 aa 050 124 150 145 acc "The specified address is a mailing list."  000334 aa 040 163 160 145 000335 aa 143 151 146 151 000336 aa 145 144 040 141 000337 aa 144 144 162 145 000340 aa 163 163 040 151 000341 aa 163 040 141 040 000342 aa 155 141 151 154 000343 aa 151 156 147 040 000344 aa 154 151 163 164 000345 aa 056 000 000 000  53  54 ec bad_mailing_list,badmlist,(The specified mailing list contains one or more invalid addresses.)  000030 segdef bad_mailing_list  000030 a0 077777 000350 000346 aa 142 141 144 155 aci "badmlist",8  000347 aa 154 151 163 164 000350 aa 102 124 150 145 acc "The specified mailing list contains one or more invalid addresses."  000351 aa 040 163 160 145 000352 aa 143 151 146 151 000353 aa 145 144 040 155 000354 aa 141 151 154 151 000355 aa 156 147 040 154 000356 aa 151 163 164 040 000357 aa 143 157 156 164 000360 aa 141 151 156 163 000361 aa 040 157 156 145 000362 aa 040 157 162 040 000363 aa 155 157 162 145 000364 aa 040 151 156 166 000365 aa 141 154 151 144 000366 aa 040 141 144 144 000367 aa 162 145 163 163 000370 aa 145 163 056 000  55  56 ec unrecognizable_addr,norecad,(The text specified is not a recognizable address.) 000031 segdef unrecognizable_addr  000031 a0 077777 000373 000371 aa 156 157 162 145 aci "norecad",8  000372 aa 143 141 144 040 000373 aa 061 124 150 145 acc "The text specified is not a recognizable address."  000374 aa 040 164 145 170 000375 aa 164 040 163 160 000376 aa 145 143 151 146 000377 aa 151 145 144 040 000400 aa 151 163 040 156 000401 aa 157 164 040 141 000402 aa 040 162 145 143 000403 aa 157 147 156 151 000404 aa 172 141 142 154 000405 aa 145 040 141 144 000406 aa 144 162 145 163 000407 aa 163 056 000 000  57  58 ec gen_help_req,genhelp,(The general help files have been requested.)  000032 segdef gen_help_req  000032 a0 077777 000412 000410 aa 147 145 156 150 aci "genhelp",8  000411 aa 145 154 160 040 000412 aa 053 124 150 145 acc "The general help files have been requested." 000413 aa 040 147 145 156 000414 aa 145 162 141 154 000415 aa 040 150 145 154 000416 aa 160 040 146 151 000417 aa 154 145 163 040 000420 aa 150 141 166 145 000421 aa 040 142 145 145 000422 aa 156 040 162 145 000423 aa 161 165 145 163 000424 aa 164 145 144 056  59  60 ec help_requested,help,(User requests usage information.)  000033 segdef help_requested 000033 a0 077777 000427 000425 aa 150 145 154 160 aci "help",8  000426 aa 040 040 040 040 000427 aa 040 125 163 145 acc "User requests usage information."  000430 aa 162 040 162 145 000431 aa 161 165 145 163 000432 aa 164 163 040 165 000433 aa 163 141 147 145 000434 aa 040 151 156 146 000435 aa 157 162 155 141 000436 aa 164 151 157 156 000437 aa 056 000 000 000  61  62 ec exit_now,quit,(Immediate termination requested.)  000034 segdef exit_now  000034 a0 077777 000442 000440 aa 161 165 151 164 aci "quit",8  000441 aa 040 040 040 040 000442 aa 040 111 155 155 acc "Immediate termination requested."  000443 aa 145 144 151 141 000444 aa 164 145 040 164 000445 aa 145 162 155 151 000446 aa 156 141 164 151 000447 aa 157 156 040 162 000450 aa 145 161 165 145 000451 aa 163 164 145 144 000452 aa 056 000 000 000  63  64 ec no_deleted_msgs,nodel,(No messages have been discarded.)  000035 segdef no_deleted_msgs  000035 a0 077777 000455 000453 aa 156 157 144 145 aci "nodel",8 000454 aa 154 040 040 040 000455 aa 040 116 157 040 acc "No messages have been discarded."  000456 aa 155 145 163 163 000457 aa 141 147 145 163 000460 aa 040 150 141 166 000461 aa 145 040 142 145 000462 aa 145 156 040 144 000463 aa 151 163 143 141 000464 aa 162 144 145 144 000465 aa 056 000 000 000  65  66 ec bad_response,badresp,(Cannot use the given response.)  000036 segdef bad_response  000036 a0 077777 000470 000466 aa 142 141 144 162 aci "badresp",8  000467 aa 145 163 160 040 000470 aa 036 103 141 156 acc "Cannot use the given response."  000471 aa 156 157 164 040 000472 aa 165 163 145 040 000473 aa 164 150 145 040 000474 aa 147 151 166 145 000475 aa 156 040 162 145 000476 aa 163 160 157 156 000477 aa 163 145 056 000  67  68 ec some_del_msgs_exist,somdexst,(Only some of the specified messages have been discarded.) 000037 segdef some_del_msgs_exist  000037 a0 077777 000502 000500 aa 163 157 155 144 aci "somdexst",8  000501 aa 145 170 163 164 000502 aa 070 117 156 154 acc "Only some of the specified messages have been discarded."  000503 aa 171 040 163 157 000504 aa 155 145 040 157 000505 aa 146 040 164 150 000506 aa 145 040 163 160 000507 aa 145 143 151 146 000510 aa 151 145 144 040 000511 aa 155 145 163 163 000512 aa 141 147 145 163 000513 aa 040 150 141 166 000514 aa 145 040 142 145 000515 aa 145 156 040 144 000516 aa 151 163 143 141 000517 aa 162 144 145 144 000520 aa 056 000 000 000  69  70 ec list_requested,lsrqst,(The user has requested a list.)  000040 segdef list_requested 000040 a0 077777 000523 000521 aa 154 163 162 161 aci "lsrqst",8  000522 aa 163 164 040 040 000523 aa 036 124 150 145 acc "The user has requested a list."  000524 aa 040 165 163 145 000525 aa 162 040 150 141 000526 aa 163 040 162 145 000527 aa 161 165 145 163 000530 aa 164 145 144 040 000531 aa 141 040 154 151 000532 aa 163 164 056 000  71  72 ec num_too_long,numlong,(Sorry, the specified number is too long.) 000041 segdef num_too_long  000041 a0 077777 000535 000533 aa 156 165 155 154 aci "numlong",8  000534 aa 157 156 147 040 000535 aa 050 123 157 162 acc "Sorry, the specified number is too long."  000536 aa 162 171 054 040 000537 aa 164 150 145 040 000540 aa 163 160 145 143 000541 aa 151 146 151 145 000542 aa 144 040 156 165 000543 aa 155 142 145 162 000544 aa 040 151 163 040 000545 aa 164 157 157 040 000546 aa 154 157 156 147 000547 aa 056 000 000 000  73  74 ec insuff_room_for_window,nowroom,(Sorry, there is insufficient room to create the specified window.)  000042 segdef insuff_room_for_window 000042 a0 077777 000552 000550 aa 156 157 167 162 aci "nowroom",8  000551 aa 157 157 155 040 000552 aa 101 123 157 162 acc "Sorry, there is insufficient room to create the specified window."  000553 aa 162 171 054 040 000554 aa 164 150 145 162 000555 aa 145 040 151 163 000556 aa 040 151 156 163 000557 aa 165 146 146 151 000560 aa 143 151 145 156 000561 aa 164 040 162 157 000562 aa 157 155 040 164 000563 aa 157 040 143 162 000564 aa 145 141 164 145 000565 aa 040 164 150 145 000566 aa 040 163 160 145 000567 aa 143 151 146 151 000570 aa 145 144 040 167 000571 aa 151 156 144 157 000572 aa 167 056 000 000  75  76 ec insuff_room_for_xmail,noxroom,(The user_io window is too small for xmail.)  000043 segdef insuff_room_for_xmail  000043 a0 077777 000575 000573 aa 156 157 170 162 aci "noxroom",8  000574 aa 157 157 155 040 000575 aa 052 124 150 145 acc "The user_io window is too small for xmail."  000576 aa 040 165 163 145 000577 aa 162 137 151 157 000600 aa 040 167 151 156 000601 aa 144 157 167 040 000602 aa 151 163 040 164 000603 aa 157 157 040 163 000604 aa 155 141 154 154 000605 aa 040 146 157 162 000606 aa 040 170 155 141 000607 aa 151 154 056 000  77  78 end  NO LITERALS  NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 000610 5a 000003 000000 000611 5a 000334 600000 000612 aa 000000 000000 000613 55 000011 000002 000614 5a 000002 400003 000615 55 000006 000011 000616 aa 012 170 155 141 000617 aa 151 154 137 145 000620 aa 162 162 137 000 000621 55 000022 000003 000622 2a 000043 400001 000623 55 000014 000003 000624 aa 025 151 156 163 insuff_room_for_xmail  000625 aa 165 146 146 137 000626 aa 162 157 157 155 000627 aa 137 146 157 162 000630 aa 137 170 155 141 000631 aa 151 154 000 000 000632 55 000033 000011 000633 2a 000042 400001 000634 55 000025 000003 000635 aa 026 151 156 163 insuff_room_for_window  000636 aa 165 146 146 137 000637 aa 162 157 157 155 000640 aa 137 146 157 162 000641 aa 137 167 151 156 000642 aa 144 157 167 000 000643 55 000042 000022 000644 2a 000041 400001 000645 55 000036 000003 000646 aa 014 156 165 155 num_too_long  000647 aa 137 164 157 157 000650 aa 137 154 157 156 000651 aa 147 000 000 000 000652 55 000051 000033 000653 2a 000040 400001 000654 55 000045 000003 000655 aa 016 154 151 163 list_requested  000656 aa 164 137 162 145 000657 aa 161 165 145 163 000660 aa 164 145 144 000 000661 55 000061 000042 000662 2a 000037 400001 000663 55 000054 000003 000664 aa 023 163 157 155 some_del_msgs_exist 000665 aa 145 137 144 145 000666 aa 154 137 155 163 000667 aa 147 163 137 145 000670 aa 170 151 163 164 000671 55 000070 000051 000672 2a 000036 400001 000673 55 000064 000003 000674 aa 014 142 141 144 bad_response  000675 aa 137 162 145 163 000676 aa 160 157 156 163 000677 aa 145 000 000 000 000700 55 000077 000061 000701 2a 000035 400001 000702 55 000073 000003 000703 aa 017 156 157 137 no_deleted_msgs 000704 aa 144 145 154 145 000705 aa 164 145 144 137 000706 aa 155 163 147 163 000707 55 000105 000070 000710 2a 000034 400001 000711 55 000102 000003 000712 aa 010 145 170 151 exit_now  000713 aa 164 137 156 157 000714 aa 167 000 000 000 000715 55 000114 000077 000716 2a 000033 400001 000717 55 000110 000003 000720 aa 016 150 145 154 help_requested  000721 aa 160 137 162 145 000722 aa 161 165 145 163 000723 aa 164 145 144 000 000724 55 000123 000105 000725 2a 000032 400001 000726 55 000117 000003 000727 aa 014 147 145 156 gen_help_req  000730 aa 137 150 145 154 000731 aa 160 137 162 145 000732 aa 161 000 000 000 000733 55 000133 000114 000734 2a 000031 400001 000735 55 000126 000003 000736 aa 023 165 156 162 unrecognizable_addr 000737 aa 145 143 157 147 000740 aa 156 151 172 141 000741 aa 142 154 145 137 000742 aa 141 144 144 162 000743 55 000143 000123 000744 2a 000030 400001 000745 55 000136 000003 000746 aa 020 142 141 144 bad_mailing_list  000747 aa 137 155 141 151 000750 aa 154 151 156 147 000751 aa 137 154 151 163 000752 aa 164 000 000 000 000753 55 000152 000133 000754 2a 000027 400001 000755 55 000146 000003 000756 aa 014 155 141 151 mailing_list  000757 aa 154 151 156 147 000760 aa 137 154 151 163 000761 aa 164 000 000 000 000762 55 000161 000143 000763 2a 000026 400001 000764 55 000155 000003 000765 aa 016 144 141 164 date_not_found  000766 aa 145 137 156 157 000767 aa 164 137 146 157 000770 aa 165 156 144 000 000771 55 000170 000152 000772 2a 000025 400001 000773 55 000164 000003 000774 aa 015 163 164 162 str_not_found  000775 aa 137 156 157 164 000776 aa 137 146 157 165 000777 aa 156 144 000 000 001000 55 000176 000161 001001 2a 000024 400001 001002 55 000173 000003 001003 aa 013 156 157 137 no_hardcopy 001004 aa 150 141 162 144 001005 aa 143 157 160 171 001006 55 000206 000170 001007 2a 000023 400001 001010 55 000201 000003 001011 aa 020 151 156 166 invalid_response  001012 aa 141 154 151 144 001013 aa 137 162 145 163 001014 aa 160 157 156 163 001015 aa 145 000 000 000 001016 55 000214 000176 001017 2a 000022 400001 001020 55 000211 000003 001021 aa 012 156 157 137 no_savebox  001022 aa 163 141 166 145 001023 aa 142 157 170 000 001024 55 000223 000206 001025 2a 000021 400001 001026 55 000217 000003 001027 aa 014 156 157 137 no_curr_msgs  001030 aa 143 165 162 162 001031 aa 137 155 163 147 001032 aa 163 000 000 000 001033 55 000232 000214 001034 2a 000020 400001 001035 55 000226 000003 001036 aa 014 151 156 164 int_prog_err  001037 aa 137 160 162 157 001040 aa 147 137 145 162 001041 aa 162 000 000 000 001042 55 000242 000223 001043 2a 000017 400001 001044 55 000235 000003 001045 aa 020 141 154 154 all_msgs_deleted  001046 aa 137 155 163 147 001047 aa 163 137 144 145 001050 aa 154 145 164 145 001051 aa 144 000 000 000 001052 55 000251 000232 001053 2a 000016 400001 001054 55 000245 000003 001055 aa 015 155 141 151 mailbox_empty  001056 aa 154 142 157 170 001057 aa 137 145 155 160 001060 aa 164 171 000 000 001061 55 000260 000242 001062 2a 000015 400001 001063 55 000254 000003 001064 aa 015 156 157 137 no_msgs_exist  001065 aa 155 163 147 163 001066 aa 137 145 170 151 001067 aa 163 164 000 000 001070 55 000267 000251 001071 2a 000014 400001 001072 55 000263 000003 001073 aa 017 163 157 155 some_msgs_exist 001074 aa 145 137 155 163 001075 aa 147 163 137 145 001076 aa 170 151 163 164 001077 55 000276 000260 001100 2a 000013 400001 001101 55 000272 000003 001102 aa 014 151 156 166 invalid_list  001103 aa 141 154 151 144 001104 aa 137 154 151 163 001105 aa 164 000 000 000 001106 55 000305 000267 001107 2a 000012 400001 001110 55 000301 000003 001111 aa 015 151 156 166 invalid_range  001112 aa 141 154 151 144 001113 aa 137 162 141 156 001114 aa 147 145 000 000 001115 55 000315 000276 001116 2a 000011 400001 001117 55 000310 000003 001120 aa 022 165 156 141 unable_to_get_help  001121 aa 142 154 145 137 001122 aa 164 157 137 147 001123 aa 145 164 137 150 001124 aa 145 154 160 000 001125 55 000325 000305 001126 2a 000010 400001 001127 55 000320 000003 001130 aa 021 156 157 137 no_help_available  001131 aa 150 145 154 160 001132 aa 137 141 166 141 001133 aa 151 154 141 142 001134 aa 154 145 000 000 001135 55 000002 000315 001136 6a 000000 400002 001137 55 000330 000003 001140 aa 014 163 171 155 symbol_table  001141 aa 142 157 154 137 001142 aa 164 141 142 154 001143 aa 145 000 000 000 DEFINITIONS HASH TABLE  001144 aa 000000 000065 001145 5a 000105 000000 001146 5a 000114 000000 001147 5a 000152 000000 001150 5a 000251 000000 001151 5a 000305 000000 001152 5a 000214 000000 001153 aa 000000 000000 001154 5a 000170 000000 001155 5a 000176 000000 001156 5a 000206 000000 001157 aa 000000 000000 001160 5a 000042 000000 001161 aa 000000 000000 001162 aa 000000 000000 001163 5a 000223 000000 001164 5a 000161 000000 001165 5a 000267 000000 001166 5a 000033 000000 001167 5a 000123 000000 001170 5a 000077 000000 001171 5a 000276 000000 001172 aa 000000 000000 001173 aa 000000 000000 001174 5a 000133 000000 001175 aa 000000 000000 001176 aa 000000 000000 001177 aa 000000 000000 001200 aa 000000 000000 001201 5a 000325 000000 001202 aa 000000 000000 001203 aa 000000 000000 001204 5a 000061 000000 001205 aa 000000 000000 001206 aa 000000 000000 001207 aa 000000 000000 001210 5a 000051 000000 001211 aa 000000 000000 001212 aa 000000 000000 001213 aa 000000 000000 001214 5a 000232 000000 001215 aa 000000 000000 001216 aa 000000 000000 001217 aa 000000 000000 001220 5a 000260 000000 001221 aa 000000 000000 001222 aa 000000 000000 001223 5a 000022 000000 001224 5a 000242 000000 001225 5a 000011 000000 001226 5a 000143 000000 001227 5a 000315 000000 001230 aa 000000 000000 001231 5a 000070 000000 NO EXTERNAL NAMES  NO TRAP POINTER WORDS  TYPE PAIR BLOCKS  001232 aa 000001 000000 001233 aa 000000 000000 INTERNAL EXPRESSION WORDS 001234 50 000422 000000 001235 aa 000000 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 02 000610 000046 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000044 000051 000007 a2 000000 000034 000044 9a 777734 0000 46 *text|  000045 5a 000424 0000 00 FIRST REFERENCE TRAP LIST  000046 aa 000000 000001 000047 aa 000000 000001 000050 2a 000044 000000 000051 aa 000000 000000 SYMBOL INFORMATION SYMBOL TABLE HEADER  000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000004 000004 aa 000000 114732 000005 aa 732732 062314 000006 aa 000000 114775 000007 aa 672041 536104 000010 aa 141154 155040 000011 aa 040040 040040 000012 aa 000024 000040 000013 aa 000034 000040 000014 aa 000044 000100 000015 aa 000002 000002 000016 aa 000064 000000 000017 aa 000000 000215 000020 aa 000000 000144 000021 aa 000000 000174 000022 aa 000205 000144 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 040066 056067 000030 aa 040040 117143 000031 aa 164157 142145 000032 aa 162040 061071 000033 aa 070066 040040 000034 aa 107112 157150 000035 aa 156163 157156 000036 aa 056123 171163 000037 aa 115141 151156 000040 aa 164056 141040 000041 aa 040040 040040 000042 aa 040040 040040 000043 aa 040040 040040 000044 aa 154151 163164 000045 aa 040040 040040 000046 aa 040040 040040 000047 aa 040040 040040 000050 aa 040040 040040 000051 aa 040040 040040 000052 aa 040040 040040 000053 aa 040040 040040 000054 aa 040040 040040 000055 aa 040040 040040 000056 aa 040040 040040 000057 aa 040040 040040 000060 aa 040040 040040 000061 aa 040040 040040 000062 aa 040040 040040 000063 aa 040040 040040 000064 aa 000000 000001 000065 aa 000000 000003 000066 aa 000102 000057 000067 aa 147740 446230 000070 aa 000000 114774 000071 aa 461013 400000 000072 aa 000116 000037 000073 aa 120665 316464 000074 aa 000000 112067 000075 aa 253504 600000 000076 aa 000126 000066 000077 aa 147714 750316 000100 aa 000000 114774 000101 aa 453561 000000 000102 aa 076163 160145 >special_ldd>install>MR12.0-1206>xmail_err_.alm 000103 aa 143151 141154 000104 aa 137154 144144 000105 aa 076151 156163 000106 aa 164141 154154 000107 aa 076115 122061 000110 aa 062056 060055 000111 aa 061062 060066 000112 aa 076170 155141 000113 aa 151154 137145 000114 aa 162162 137056 000115 aa 141154 155040 000116 aa 076154 144144 >ldd>include>et_macros.incl.alm 000117 aa 076151 156143 000120 aa 154165 144145 000121 aa 076145 164137 000122 aa 155141 143162 000123 aa 157163 056151 000124 aa 156143 154056 000125 aa 141154 155040 000126 aa 076163 160145 >special_ldd>install>MR12.0-1206>stack_header.incl.alm  000127 aa 143151 141154 000130 aa 137154 144144 000131 aa 076151 156163 000132 aa 164141 154154 000133 aa 076115 122061 000134 aa 062056 060055 000135 aa 061062 060066 000136 aa 076163 164141 000137 aa 143153 137150 000140 aa 145141 144145 000141 aa 162056 151156 000142 aa 143154 056141 000143 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number  *text xmail_err_: 20. 14 .._00000 xmail_err_: 22. 27 .._00001 xmail_err_: 24. 40 .._00002 xmail_err_: 26. 53 .._00003 xmail_err_: 28. 66 .._00004 xmail_err_: 30. 103 .._00005 xmail_err_: 32. 117 .._00006 xmail_err_: 34. 133 .._00007 xmail_err_: 36. 150 .._00010 xmail_err_: 38. 201 .._00011 xmail_err_: 40. 216 .._00012 xmail_err_: 42. 232 .._00013 xmail_err_: 44. 246 .._00014 xmail_err_: 46. 274 .._00015 xmail_err_: 48. 314 .._00016 xmail_err_: 50. 333 .._00017 xmail_err_: 52. 350 .._00020 xmail_err_: 54. 373 .._00021 xmail_err_: 56. 412 .._00022 xmail_err_: 58. 427 .._00023 xmail_err_: 60. 442 .._00024 xmail_err_: 62. 455 .._00025 xmail_err_: 64. 470 .._00026 xmail_err_: 66. 502 .._00027 xmail_err_: 68. 523 .._00030 xmail_err_: 70. 535 .._00031 xmail_err_: 72. 552 .._00032 xmail_err_: 74. 575 .._00033 xmail_err_: 76. 44 .code_end xmail_err_: 20. 10 .code_start xmail_err_: 20. 5 .loop xmail_err_: 20. 77777 .segno xmail_err_: 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42,  44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66,  68, 70, 72, 74, 76. 0 .trapproc xmail_err_: 20. 17 all_msgs_deleted xmail_err_: 36. 30 bad_mailing_list xmail_err_: 54. 36 bad_response xmail_err_: 66. 1170 call_offset stack_header: 80.  10 codes xmail_err_: 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42,  44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66,  68, 70, 72, 74, 76. 26 date_not_found xmail_err_: 50. 1174 entry_offset stack_header: 84.  34 exit_now xmail_err_: 62. 32 gen_help_req xmail_err_: 58. 33 help_requested xmail_err_: 60. 42 insuff_room_for_window xmail_err_: 74. 43 insuff_room_for_xmail xmail_err_: 76. 20 int_prog_err xmail_err_: 38. 13 invalid_list xmail_err_: 28. 12 invalid_range xmail_err_: 26. 23 invalid_response xmail_err_: 44. 40 list_requested xmail_err_: 70. 16 mailbox_empty xmail_err_: 34. 27 mailing_list xmail_err_: 52. 0 messages xmail_err_: 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42,  44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66,  68, 70, 72, 74, 76. 21 no_curr_msgs xmail_err_: 40. 35 no_deleted_msgs xmail_err_: 64. 24 no_hardcopy xmail_err_: 46. 10 no_help_available xmail_err_: 22. 15 no_msgs_exist xmail_err_: 32. 22 no_savebox xmail_err_: 42. 41 num_too_long xmail_err_: 72. 44 past_codes xmail_err_: 20. 1171 push_offset stack_header: 81.  1173 return_no_pop_offset stack_header: 83.  1172 return_offset stack_header: 82.  37 some_del_msgs_exist xmail_err_: 68. 14 some_msgs_exist xmail_err_: 30. 73 stach_header.trace_top_ptr stack_header: 62. 66 stack_header.assign_linkage_ptr stack_header: 59.  32 stack_header.bar_mode_sp stack_header: 42. 36 stack_header.call_op_ptr stack_header: 44. 10 stack_header.clr_ptr stack_header: 27.  6 stack_header.combined_stat_ptr stack_header: 25.  4 stack_header.cpm_data_ptr stack_header: 24. 13 stack_header.cpm_enabled stack_header: 32. 13 stack_header.cur_lot_size stack_header: 31. 64 stack_header.ect_ptr stack_header: 58.  46 stack_header.entry_op_ptr stack_header: 49. 70 stack_header.heap_header_ptr stack_header: 60. 74 stack_header.in_trace stack_header: 63.  52 stack_header.isot_ptr stack_header: 52.  26 stack_header.lot_ptr xmail_err_: 20, stack_header: 39.  12 stack_header.main_proc_invoked stack_header: 29.  12 stack_header.max_lot_size stack_header: 28. 20 stack_header.parent_ptr stack_header: 36.  34 stack_header.pl1_operators_ptr stack_header: 43.  40 stack_header.push_op_ptr stack_header: 46. 42 stack_header.return_op_ptr stack_header: 47. 44 stack_header.ret_no_pop_op_ptr stack_header: 48.  62 stack_header.rnt_ptr stack_header: 57.  12 stack_header.run_unit_depth stack_header: 30. 54 stack_header.sct_ptr stack_header: 53.  30 stack_header.signal_ptr stack_header: 41.  22 stack_header.stack_begin_ptr stack_header: 37. 24 stack_header.stack_end_ptr stack_header: 38. 14 stack_header.system_free_ptr stack_header: 33. 60 stack_header.sys_link_info_ptr stack_header: 56.  72 stack_header.trace_frames stack_header: 61. 50 stack_header.trans_op_tv_ptr stack_header: 51. 56 stack_header.unwinder_ptr stack_header: 54. 16 stack_header.user_free_ptr stack_header: 34. 100 stack_header_end stack_header: 64.  25 str_not_found xmail_err_: 48. 0 trace_frames.count stack_header: 69.  1 trace_frames.top_ptr stack_header: 70.  551 tv_offset stack_header: 75, 80, 81, 82, 83, 84. 11 unable_to_get_help xmail_err_: 24. 31 unrecognizable_addr xmail_err_: 56. NO FATAL ERRORS  ----------------------------------------------------------- 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