ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.0-1206>emf_et_.alm ASSEMBLED ON: 11/05/86 1050.5 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) Honeywell Information Systems Inc., 1982 *  4 " * *  5 " * Copyright (c) 1972 by Massachusetts Institute of *  6 " * Technology and Honeywell Information Systems, Inc. *  7 " * *  8 " ***********************************************************  9  10 " HISTORY COMMENTS: 11 " 1) change(86-03-07,Herbst), approve(86-03-25,MCR7367),  12 " audit(86-04-28,Margolin), install(86-05-22,MR12.0-1059):  13 " Added $no_messages_selected.  14 " END HISTORY COMMENTS 15  16  17 " Error table for the Multics Extended Mail Facility (print_mail/read_mail/send_mail)  18  19 " Created: 1978 by W. Olin Sibert and/or G. Palter 20 " Modified: August 1983 by G. Palter for conversion of extended mail to the new mail system  21  22  000000 23 name emf_et_  24  25 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  26  27 et emf_et_  000000 name emf_et_     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   28  29  30 ec address_not_found,addr^fnd,  31 (The address was not found.)  000010 segdef address_not_found  000010 a0 077777 000014 000012 aa 141 144 144 162 aci "addr^fnd",8  000013 aa 136 146 156 144 000014 aa 032 124 150 145 acc "The address was not found."  000015 aa 040 141 144 144 000016 aa 162 145 163 163 000017 aa 040 167 141 163 000020 aa 040 156 157 164 000021 aa 040 146 157 165 000022 aa 156 144 056 000  32  33 ec empty_address_list_field,emptyfld, 34 (There are no addresses in this field.)  000011 segdef empty_address_list_field  000011 a0 077777 000025 000023 aa 145 155 160 164 aci "emptyfld",8  000024 aa 171 146 154 144 000025 aa 045 124 150 145 acc "There are no addresses in this field."  000026 aa 162 145 040 141 000027 aa 162 145 040 156 000030 aa 157 040 141 144 000031 aa 144 162 145 163 000032 aa 163 145 163 040 000033 aa 151 156 040 164 000034 aa 150 151 163 040 000035 aa 146 151 145 154 000036 aa 144 056 000 000  35  36 ec empty_range,empt_rng,  37 (No messages in the specified range.)  000012 segdef empty_range  000012 a0 077777 000041 000037 aa 145 155 160 164 aci "empt_rng",8  000040 aa 137 162 156 147 000041 aa 043 116 157 040 acc "No messages in the specified range." 000042 aa 155 145 163 163 000043 aa 141 147 145 163 000044 aa 040 151 156 040 000045 aa 164 150 145 040 000046 aa 163 160 145 143 000047 aa 151 146 151 145 000050 aa 144 040 162 141 000051 aa 156 147 145 056  38  39 ec expunged_message,expunged, 40 (Specified message has already been permanently deleted from the mailbox.) 000013 segdef expunged_message  000013 a0 077777 000054 000052 aa 145 170 160 165 aci "expunged",8  000053 aa 156 147 145 144 000054 aa 110 123 160 145 acc "Specified message has already been permanently deleted from the mailbox."  000055 aa 143 151 146 151 000056 aa 145 144 040 155 000057 aa 145 163 163 141 000060 aa 147 145 040 150 000061 aa 141 163 040 141 000062 aa 154 162 145 141 000063 aa 144 171 040 142 000064 aa 145 145 156 040 000065 aa 160 145 162 155 000066 aa 141 156 145 156 000067 aa 164 154 171 040 000070 aa 144 145 154 145 000071 aa 164 145 144 040 000072 aa 146 162 157 155 000073 aa 040 164 150 145 000074 aa 040 155 141 151 000075 aa 154 142 157 170 000076 aa 056 000 000 000  41  42 ec forwarding_aborted,fwdabort,  43 (The forwarding sub-request-loop has been aborted. The message will not be forwarded.)  000014 segdef forwarding_aborted 000014 a0 077777 000101 000077 aa 146 167 144 141 aci "fwdabort",8  000100 aa 142 157 162 164 000101 aa 125 124 150 145 acc "The forwarding sub-request-loop has been aborted. The message will not be forwarded."  000102 aa 040 146 157 162 000103 aa 167 141 162 144 000104 aa 151 156 147 040 000105 aa 163 165 142 055 000106 aa 162 145 161 165 000107 aa 145 163 164 055 000110 aa 154 157 157 160 000111 aa 040 150 141 163 000112 aa 040 142 145 145 000113 aa 156 040 141 142 000114 aa 157 162 164 145 000115 aa 144 056 040 040 000116 aa 124 150 145 040 000117 aa 155 145 163 163 000120 aa 141 147 145 040 000121 aa 167 151 154 154 000122 aa 040 156 157 164 000123 aa 040 142 145 040 000124 aa 146 157 162 167 000125 aa 141 162 144 145 000126 aa 144 056 000 000  44  45 ec insufficient_quota_to_write,writeRQO,  46 (There is insufficient quota to write this message into the segment.)  000015 segdef insufficient_quota_to_write  000015 a0 077777 000131 000127 aa 167 162 151 164 aci "writeRQO",8  000130 aa 145 122 121 117 000131 aa 103 124 150 145 acc "There is insufficient quota to write this message into the segment." 000132 aa 162 145 040 151 000133 aa 163 040 151 156 000134 aa 163 165 146 146 000135 aa 151 143 151 145 000136 aa 156 164 040 161 000137 aa 165 157 164 141 000140 aa 040 164 157 040 000141 aa 167 162 151 164 000142 aa 145 040 164 150 000143 aa 151 163 040 155 000144 aa 145 163 163 141 000145 aa 147 145 040 151 000146 aa 156 164 157 040 000147 aa 164 150 145 040 000150 aa 163 145 147 155 000151 aa 145 156 164 056  47  48 ec insufficient_segment_size,seg2smal,  49 (The maximum length of the segment is too small to allow this message to be written.)  000016 segdef insufficient_segment_size  000016 a0 077777 000154 000152 aa 163 145 147 062 aci "seg2smal",8  000153 aa 163 155 141 154 000154 aa 123 124 150 145 acc "The maximum length of the segment is too small to allow this message to be written." 000155 aa 040 155 141 170 000156 aa 151 155 165 155 000157 aa 040 154 145 156 000160 aa 147 164 150 040 000161 aa 157 146 040 164 000162 aa 150 145 040 163 000163 aa 145 147 155 145 000164 aa 156 164 040 151 000165 aa 163 040 164 157 000166 aa 157 040 163 155 000167 aa 141 154 154 040 000170 aa 164 157 040 141 000171 aa 154 154 157 167 000172 aa 040 164 150 151 000173 aa 163 040 155 145 000174 aa 163 163 141 147 000175 aa 145 040 164 157 000176 aa 040 142 145 040 000177 aa 167 162 151 164 000200 aa 164 145 156 056  50  51 ec msg_spec_bad_expr,MS^expr, 52 (Invalid expression in message specifier.) 000017 segdef msg_spec_bad_expr  000017 a0 077777 000203 000201 aa 115 123 136 145 aci "MS^expr",8  000202 aa 170 160 162 040 000203 aa 050 111 156 166 acc "Invalid expression in message specifier."  000204 aa 141 154 151 144 000205 aa 040 145 170 160 000206 aa 162 145 163 163 000207 aa 151 157 156 040 000210 aa 151 156 040 155 000211 aa 145 163 163 141 000212 aa 147 145 040 163 000213 aa 160 145 143 151 000214 aa 146 151 145 162 000215 aa 056 000 000 000  53  54 ec msg_spec_bad_keyword,MS^kwr,  55 (Invalid keyword in message specifier.)  000020 segdef msg_spec_bad_keyword  000020 a0 077777 000220 000216 aa 115 123 136 153 aci "MS^kwr",8  000217 aa 167 162 040 040 000220 aa 045 111 156 166 acc "Invalid keyword in message specifier."  000221 aa 141 154 151 144 000222 aa 040 153 145 171 000223 aa 167 157 162 144 000224 aa 040 151 156 040 000225 aa 155 145 163 163 000226 aa 141 147 145 040 000227 aa 163 160 145 143 000230 aa 151 146 151 145 000231 aa 162 056 000 000  56  57 ec msg_spec_bad_number,MS^num,  58 (Invalid number in message specifier.) 000021 segdef msg_spec_bad_number  000021 a0 077777 000234 000232 aa 115 123 136 156 aci "MS^num",8  000233 aa 165 155 040 040 000234 aa 044 111 156 166 acc "Invalid number in message specifier."  000235 aa 141 154 151 144 000236 aa 040 156 165 155 000237 aa 142 145 162 040 000240 aa 151 156 040 155 000241 aa 145 163 163 141 000242 aa 147 145 040 163 000243 aa 160 145 143 151 000244 aa 146 151 145 162 000245 aa 056 000 000 000  59  60 ec msg_spec_bad_oper,MS^oper, 61 (Invalid operator in message specifier.)  000022 segdef msg_spec_bad_oper  000022 a0 077777 000250 000246 aa 115 123 136 157 aci "MS^oper",8  000247 aa 160 145 162 040 000250 aa 046 111 156 166 acc "Invalid operator in message specifier."  000251 aa 141 154 151 144 000252 aa 040 157 160 145 000253 aa 162 141 164 157 000254 aa 162 040 151 156 000255 aa 040 155 145 163 000256 aa 163 141 147 145 000257 aa 040 163 160 145 000260 aa 143 151 146 151 000261 aa 145 162 056 000  62  63 ec msg_spec_bad_range,MS^rng, 64 (Invalid range in message specifier.)  000023 segdef msg_spec_bad_range 000023 a0 077777 000264 000262 aa 115 123 136 162 aci "MS^rng",8  000263 aa 156 147 040 040 000264 aa 043 111 156 166 acc "Invalid range in message specifier." 000265 aa 141 154 151 144 000266 aa 040 162 141 156 000267 aa 147 145 040 151 000270 aa 156 040 155 145 000271 aa 163 163 141 147 000272 aa 145 040 163 160 000273 aa 145 143 151 146 000274 aa 151 145 162 056  65  66 ec msg_spec_bad_regexp,MS^regx,  67 (Invalid regular expression in message specifier.) 000024 segdef msg_spec_bad_regexp  000024 a0 077777 000277 000275 aa 115 123 136 162 aci "MS^regx",8  000276 aa 145 147 170 040 000277 aa 060 111 156 166 acc "Invalid regular expression in message specifier."  000300 aa 141 154 151 144 000301 aa 040 162 145 147 000302 aa 165 154 141 162 000303 aa 040 145 170 160 000304 aa 162 145 163 163 000305 aa 151 157 156 040 000306 aa 151 156 040 155 000307 aa 145 163 163 141 000310 aa 147 145 040 163 000311 aa 160 145 143 151 000312 aa 146 151 145 162 000313 aa 056 000 000 000  68  69 ec msg_spec_invalid,badMS,  70 (Invalid message specifier.)  000025 segdef msg_spec_invalid  000025 a0 077777 000316 000314 aa 142 141 144 115 aci "badMS",8 000315 aa 123 040 040 040 000316 aa 032 111 156 166 acc "Invalid message specifier."  000317 aa 141 154 151 144 000320 aa 040 155 145 163 000321 aa 163 141 147 145 000322 aa 040 163 160 145 000323 aa 143 151 146 151 000324 aa 145 162 056 000  71  72 ec msg_spec_missing_delim,MS^delim,  73 (Missing regular expression delimiter in message specifier.)  000026 segdef msg_spec_missing_delim 000026 a0 077777 000327 000325 aa 115 123 136 144 aci "MS^delim",8  000326 aa 145 154 151 155 000327 aa 072 115 151 163 acc "Missing regular expression delimiter in message specifier."  000330 aa 163 151 156 147 000331 aa 040 162 145 147 000332 aa 165 154 141 162 000333 aa 040 145 170 160 000334 aa 162 145 163 163 000335 aa 151 157 156 040 000336 aa 144 145 154 151 000337 aa 155 151 164 145 000340 aa 162 040 151 156 000341 aa 040 155 145 163 000342 aa 163 141 147 145 000343 aa 040 163 160 145 000344 aa 143 151 146 151 000345 aa 145 162 056 000  74  75 ec msg_spec_mixed,MSmixed,  76 (Message specifiers may not contain both ranges and regular expressions.)  000027 segdef msg_spec_mixed 000027 a0 077777 000350 000346 aa 115 123 155 151 aci "MSmixed",8  000347 aa 170 145 144 040 000350 aa 107 115 145 163 acc "Message specifiers may not contain both ranges and regular expressions." 000351 aa 163 141 147 145 000352 aa 040 163 160 145 000353 aa 143 151 146 151 000354 aa 145 162 163 040 000355 aa 155 141 171 040 000356 aa 156 157 164 040 000357 aa 143 157 156 164 000360 aa 141 151 156 040 000361 aa 142 157 164 150 000362 aa 040 162 141 156 000363 aa 147 145 163 040 000364 aa 141 156 144 040 000365 aa 162 145 147 165 000366 aa 154 141 162 040 000367 aa 145 170 160 162 000370 aa 145 163 163 151 000371 aa 157 156 163 056  77  78 ec msg_spec_null,nullMS,  79 (This is a null message specifier.)  000030 segdef msg_spec_null  000030 a0 077777 000374 000372 aa 156 165 154 154 aci "nullMS",8  000373 aa 115 123 040 040 000374 aa 041 124 150 151 acc "This is a null message specifier."  000375 aa 163 040 151 163 000376 aa 040 141 040 156 000377 aa 165 154 154 040 000400 aa 155 145 163 163 000401 aa 141 147 145 040 000402 aa 163 160 145 143 000403 aa 151 146 151 145 000404 aa 162 056 000 000  80  81 ec msg_spec_too_complex,MS>cmplx, 82 (This message specifier is too complex.)  000031 segdef msg_spec_too_complex  000031 a0 077777 000407 000405 aa 115 123 076 143 aci "MS>cmplx",8  000406 aa 155 160 154 170 000407 aa 046 124 150 151 acc "This message specifier is too complex."  000410 aa 163 040 155 145 000411 aa 163 163 141 147 000412 aa 145 040 163 160 000413 aa 145 143 151 146 000414 aa 151 145 162 040 000415 aa 151 163 040 164 000416 aa 157 157 040 143 000417 aa 157 155 160 154 000420 aa 145 170 056 000  83  84 ec no_current_message,^curmsg,  85 (There is no current message.) 000032 segdef no_current_message 000032 a0 077777 000423 000421 aa 136 143 165 162 aci "^curmsg",8  000422 aa 155 163 147 040 000423 aa 034 124 150 145 acc "There is no current message."  000424 aa 162 145 040 151 000425 aa 163 040 156 157 000426 aa 040 143 165 162 000427 aa 162 145 156 164 000430 aa 040 155 145 163 000431 aa 163 141 147 145 000432 aa 056 000 000 000  86  87 ec no_first_message,^frstmsg, 88 (There is no first message.)  000033 segdef no_first_message  000033 a0 077777 000435 000433 aa 136 146 162 163 aci "^frstmsg",8  000434 aa 164 155 163 147 000435 aa 032 124 150 145 acc "There is no first message."  000436 aa 162 145 040 151 000437 aa 163 040 156 157 000440 aa 040 146 151 162 000441 aa 163 164 040 155 000442 aa 145 163 163 141 000443 aa 147 145 056 000  89  90 ec no_last_message,^lastmsg,  91 (There is no last message.)  000034 segdef no_last_message  000034 a0 077777 000446 000444 aa 136 154 141 163 aci "^lastmsg",8  000445 aa 164 155 163 147 000446 aa 031 124 150 145 acc "There is no last message."  000447 aa 162 145 040 151 000450 aa 163 040 156 157 000451 aa 040 154 141 163 000452 aa 164 040 155 145 000453 aa 163 163 141 147 000454 aa 145 056 000 000  92  93 ec no_matching_messages,nomatch,  94 (No matching messages.)  000035 segdef no_matching_messages  000035 a0 077777 000457 000455 aa 156 157 155 141 aci "nomatch",8  000456 aa 164 143 150 040 000457 aa 025 116 157 040 acc "No matching messages."  000460 aa 155 141 164 143 000461 aa 150 151 156 147 000462 aa 040 155 145 163 000463 aa 163 141 147 145 000464 aa 163 056 000 000  95  96 ec no_messages,no_msgs,  97 (There are no messages.)  000036 segdef no_messages  000036 a0 077777 000467 000465 aa 156 157 137 155 aci "no_msgs",8  000466 aa 163 147 163 040 000467 aa 026 124 150 145 acc "There are no messages."  000470 aa 162 145 040 141 000471 aa 162 145 040 156 000472 aa 157 040 155 145 000473 aa 163 163 141 147 000474 aa 145 163 056 000  98  99 ec no_messages_selected,nomsgsel, 100 (No messages were selected.)  000037 segdef no_messages_selected  000037 a0 077777 000477 000475 aa 156 157 155 163 aci "nomsgsel",8  000476 aa 147 163 145 154 000477 aa 032 116 157 040 acc "No messages were selected."  000500 aa 155 145 163 163 000501 aa 141 147 145 163 000502 aa 040 167 145 162 000503 aa 145 040 163 145 000504 aa 154 145 143 164 000505 aa 145 144 056 000  101  102 ec no_next_message,^nxtMSG,  103 (There is no next message.)  000040 segdef no_next_message  000040 a0 077777 000510 000506 aa 136 156 170 164 aci "^nxtMSG",8  000507 aa 115 123 107 040 000510 aa 031 124 150 145 acc "There is no next message."  000511 aa 162 145 040 151 000512 aa 163 040 156 157 000513 aa 040 156 145 170 000514 aa 164 040 155 145 000515 aa 163 163 141 147 000516 aa 145 056 000 000  104  105 ec no_previous_message,^prvMSG,  106 (There is no previous message.)  000041 segdef no_previous_message  000041 a0 077777 000521 000517 aa 136 160 162 166 aci "^prvMSG",8  000520 aa 115 123 107 040 000521 aa 035 124 150 145 acc "There is no previous message."  000522 aa 162 145 040 151 000523 aa 163 040 156 157 000524 aa 040 160 162 145 000525 aa 166 151 157 165 000526 aa 163 040 155 145 000527 aa 163 163 141 147 000530 aa 145 056 000 000  107  108 ec no_such_message,^suchmsg,  109 (Specified message does not exist.)  000042 segdef no_such_message  000042 a0 077777 000533 000531 aa 136 163 165 143 aci "^suchmsg",8  000532 aa 150 155 163 147 000533 aa 041 123 160 145 acc "Specified message does not exist."  000534 aa 143 151 146 151 000535 aa 145 144 040 155 000536 aa 145 163 163 141 000537 aa 147 145 040 144 000540 aa 157 145 163 040 000541 aa 156 157 164 040 000542 aa 145 170 151 163 000543 aa 164 056 000 000  110  111 ec send_mail_aborted,sdmabort,  112 (This send_mail invocation was exited without sending, saving, or writing the message.)  000043 segdef send_mail_aborted  000043 a0 077777 000546 000544 aa 163 144 155 141 aci "sdmabort",8  000545 aa 142 157 162 164 000546 aa 125 124 150 151 acc "This send_mail invocation was exited without sending, saving, or writing the message."  000547 aa 163 040 163 145 000550 aa 156 144 137 155 000551 aa 141 151 154 040 000552 aa 151 156 166 157 000553 aa 143 141 164 151 000554 aa 157 156 040 167 000555 aa 141 163 040 145 000556 aa 170 151 164 145 000557 aa 144 040 167 151 000560 aa 164 150 157 165 000561 aa 164 040 163 145 000562 aa 156 144 151 156 000563 aa 147 054 040 163 000564 aa 141 166 151 156 000565 aa 147 054 040 157 000566 aa 162 040 167 162 000567 aa 151 164 151 156 000570 aa 147 040 164 150 000571 aa 145 040 155 145 000572 aa 163 163 141 147 000573 aa 145 056 000 000  113  114 end  NO LITERALS  NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 000574 5a 000003 000000 000575 5a 000361 600000 000576 aa 000000 000000 000577 55 000010 000002 000600 5a 000002 400003 000601 55 000006 000010 000602 aa 007 145 155 146 000603 aa 137 145 164 137 000604 55 000020 000003 000605 2a 000043 400001 000606 55 000013 000003 000607 aa 021 163 145 156 send_mail_aborted  000610 aa 144 137 155 141 000611 aa 151 154 137 141 000612 aa 142 157 162 164 000613 aa 145 144 000 000 000614 55 000027 000010 000615 2a 000042 400001 000616 55 000023 000003 000617 aa 017 156 157 137 no_such_message 000620 aa 163 165 143 150 000621 aa 137 155 145 163 000622 aa 163 141 147 145 000623 55 000037 000020 000624 2a 000041 400001 000625 55 000032 000003 000626 aa 023 156 157 137 no_previous_message 000627 aa 160 162 145 166 000630 aa 151 157 165 163 000631 aa 137 155 145 163 000632 aa 163 141 147 145 000633 55 000046 000027 000634 2a 000040 400001 000635 55 000042 000003 000636 aa 017 156 157 137 no_next_message 000637 aa 156 145 170 164 000640 aa 137 155 145 163 000641 aa 163 141 147 145 000642 55 000057 000037 000643 2a 000037 400001 000644 55 000051 000003 000645 aa 024 156 157 137 no_messages_selected  000646 aa 155 145 163 163 000647 aa 141 147 145 163 000650 aa 137 163 145 154 000651 aa 145 143 164 145 000652 aa 144 000 000 000 000653 55 000065 000046 000654 2a 000036 400001 000655 55 000062 000003 000656 aa 013 156 157 137 no_messages 000657 aa 155 145 163 163 000660 aa 141 147 145 163 000661 55 000076 000057 000662 2a 000035 400001 000663 55 000070 000003 000664 aa 024 156 157 137 no_matching_messages  000665 aa 155 141 164 143 000666 aa 150 151 156 147 000667 aa 137 155 145 163 000670 aa 163 141 147 145 000671 aa 163 000 000 000 000672 55 000105 000065 000673 2a 000034 400001 000674 55 000101 000003 000675 aa 017 156 157 137 no_last_message 000676 aa 154 141 163 164 000677 aa 137 155 145 163 000700 aa 163 141 147 145 000701 55 000115 000076 000702 2a 000033 400001 000703 55 000110 000003 000704 aa 020 156 157 137 no_first_message  000705 aa 146 151 162 163 000706 aa 164 137 155 145 000707 aa 163 163 141 147 000710 aa 145 000 000 000 000711 55 000125 000105 000712 2a 000032 400001 000713 55 000120 000003 000714 aa 022 156 157 137 no_current_message  000715 aa 143 165 162 162 000716 aa 145 156 164 137 000717 aa 155 145 163 163 000720 aa 141 147 145 000 000721 55 000136 000115 000722 2a 000031 400001 000723 55 000130 000003 000724 aa 024 155 163 147 msg_spec_too_complex  000725 aa 137 163 160 145 000726 aa 143 137 164 157 000727 aa 157 137 143 157 000730 aa 155 160 154 145 000731 aa 170 000 000 000 000732 55 000145 000125 000733 2a 000030 400001 000734 55 000141 000003 000735 aa 015 155 163 147 msg_spec_null  000736 aa 137 163 160 145 000737 aa 143 137 156 165 000740 aa 154 154 000 000 000741 55 000154 000136 000742 2a 000027 400001 000743 55 000150 000003 000744 aa 016 155 163 147 msg_spec_mixed  000745 aa 137 163 160 145 000746 aa 143 137 155 151 000747 aa 170 145 144 000 000750 55 000165 000145 000751 2a 000026 400001 000752 55 000157 000003 000753 aa 026 155 163 147 msg_spec_missing_delim  000754 aa 137 163 160 145 000755 aa 143 137 155 151 000756 aa 163 163 151 156 000757 aa 147 137 144 145 000760 aa 154 151 155 000 000761 55 000175 000154 000762 2a 000025 400001 000763 55 000170 000003 000764 aa 020 155 163 147 msg_spec_invalid  000765 aa 137 163 160 145 000766 aa 143 137 151 156 000767 aa 166 141 154 151 000770 aa 144 000 000 000 000771 55 000205 000165 000772 2a 000024 400001 000773 55 000200 000003 000774 aa 023 155 163 147 msg_spec_bad_regexp 000775 aa 137 163 160 145 000776 aa 143 137 142 141 000777 aa 144 137 162 145 001000 aa 147 145 170 160 001001 55 000215 000175 001002 2a 000023 400001 001003 55 000210 000003 001004 aa 022 155 163 147 msg_spec_bad_range  001005 aa 137 163 160 145 001006 aa 143 137 142 141 001007 aa 144 137 162 141 001010 aa 156 147 145 000 001011 55 000225 000205 001012 2a 000022 400001 001013 55 000220 000003 001014 aa 021 155 163 147 msg_spec_bad_oper  001015 aa 137 163 160 145 001016 aa 143 137 142 141 001017 aa 144 137 157 160 001020 aa 145 162 000 000 001021 55 000235 000215 001022 2a 000021 400001 001023 55 000230 000003 001024 aa 023 155 163 147 msg_spec_bad_number 001025 aa 137 163 160 145 001026 aa 143 137 142 141 001027 aa 144 137 156 165 001030 aa 155 142 145 162 001031 55 000246 000225 001032 2a 000020 400001 001033 55 000240 000003 001034 aa 024 155 163 147 msg_spec_bad_keyword  001035 aa 137 163 160 145 001036 aa 143 137 142 141 001037 aa 144 137 153 145 001040 aa 171 167 157 162 001041 aa 144 000 000 000 001042 55 000256 000235 001043 2a 000017 400001 001044 55 000251 000003 001045 aa 021 155 163 147 msg_spec_bad_expr  001046 aa 137 163 160 145 001047 aa 143 137 142 141 001050 aa 144 137 145 170 001051 aa 160 162 000 000 001052 55 000270 000246 001053 2a 000016 400001 001054 55 000261 000003 001055 aa 031 151 156 163 insufficient_segment_size  001056 aa 165 146 146 151 001057 aa 143 151 145 156 001060 aa 164 137 163 145 001061 aa 147 155 145 156 001062 aa 164 137 163 151 001063 aa 172 145 000 000 001064 55 000302 000256 001065 2a 000015 400001 001066 55 000273 000003 001067 aa 033 151 156 163 insufficient_quota_to_write 001070 aa 165 146 146 151 001071 aa 143 151 145 156 001072 aa 164 137 161 165 001073 aa 157 164 141 137 001074 aa 164 157 137 167 001075 aa 162 151 164 145 001076 55 000312 000270 001077 2a 000014 400001 001100 55 000305 000003 001101 aa 022 146 157 162 forwarding_aborted  001102 aa 167 141 162 144 001103 aa 151 156 147 137 001104 aa 141 142 157 162 001105 aa 164 145 144 000 001106 55 000322 000302 001107 2a 000013 400001 001110 55 000315 000003 001111 aa 020 145 170 160 expunged_message  001112 aa 165 156 147 145 001113 aa 144 137 155 145 001114 aa 163 163 141 147 001115 aa 145 000 000 000 001116 55 000330 000312 001117 2a 000012 400001 001120 55 000325 000003 001121 aa 013 145 155 160 empty_range 001122 aa 164 171 137 162 001123 aa 141 156 147 145 001124 55 000342 000322 001125 2a 000011 400001 001126 55 000333 000003 001127 aa 030 145 155 160 empty_address_list_field  001130 aa 164 171 137 141 001131 aa 144 144 162 145 001132 aa 163 163 137 154 001133 aa 151 163 164 137 001134 aa 146 151 145 154 001135 aa 144 000 000 000 001136 55 000352 000330 001137 2a 000010 400001 001140 55 000345 000003 001141 aa 021 141 144 144 address_not_found  001142 aa 162 145 163 163 001143 aa 137 156 157 164 001144 aa 137 146 157 165 001145 aa 156 144 000 000 001146 55 000002 000342 001147 6a 000000 400002 001150 55 000355 000003 001151 aa 014 163 171 155 symbol_table  001152 aa 142 157 154 137 001153 aa 164 141 142 154 001154 aa 145 000 000 000 DEFINITIONS HASH TABLE  001155 aa 000000 000065 001156 5a 000037 000000 001157 5a 000076 000000 001160 aa 000000 000000 001161 aa 000000 000000 001162 aa 000000 000000 001163 aa 000000 000000 001164 5a 000322 000000 001165 5a 000057 000000 001166 5a 000010 000000 001167 aa 000000 000000 001170 5a 000312 000000 001171 aa 000000 000000 001172 aa 000000 000000 001173 aa 000000 000000 001174 5a 000342 000000 001175 aa 000000 000000 001176 aa 000000 000000 001177 5a 000302 000000 001200 aa 000000 000000 001201 aa 000000 000000 001202 aa 000000 000000 001203 5a 000154 000000 001204 aa 000000 000000 001205 aa 000000 000000 001206 aa 000000 000000 001207 5a 000125 000000 001210 5a 000235 000000 001211 5a 000175 000000 001212 5a 000225 000000 001213 5a 000205 000000 001214 5a 000352 000000 001215 5a 000215 000000 001216 5a 000246 000000 001217 5a 000165 000000 001220 5a 000330 000000 001221 aa 000000 000000 001222 5a 000270 000000 001223 5a 000145 000000 001224 aa 000000 000000 001225 5a 000136 000000 001226 5a 000256 000000 001227 aa 000000 000000 001230 5a 000046 000000 001231 5a 000065 000000 001232 5a 000027 000000 001233 aa 000000 000000 001234 5a 000115 000000 001235 aa 000000 000000 001236 aa 000000 000000 001237 aa 000000 000000 001240 5a 000105 000000 001241 aa 000000 000000 001242 5a 000020 000000 NO EXTERNAL NAMES  NO TRAP POINTER WORDS  TYPE PAIR BLOCKS  001243 aa 000001 000000 001244 aa 000000 000000 INTERNAL EXPRESSION WORDS 001245 50 000447 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 02 000574 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 000451 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 672064 755303 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 000214 000020 aa 000000 000143 000021 aa 000000 000173 000022 aa 000204 000143 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 000054 000067 aa 147740 446252 000070 aa 000000 114774 000071 aa 461041 000000 000072 aa 000115 000037 000073 aa 120665 316464 000074 aa 000000 112067 000075 aa 253504 600000 000076 aa 000125 000066 000077 aa 147714 750316 000100 aa 000000 114774 000101 aa 453561 000000 000102 aa 076163 160145 >special_ldd>install>MR12.0-1206>emf_et_.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 076145 155146 000113 aa 137145 164137 000114 aa 056141 154155 000115 aa 076154 144144 >ldd>include>et_macros.incl.alm 000116 aa 076151 156143 000117 aa 154165 144145 000120 aa 076145 164137 000121 aa 155141 143162 000122 aa 157163 056151 000123 aa 156143 154056 000124 aa 141154 155040 000125 aa 076163 160145 >special_ldd>install>MR12.0-1206>stack_header.incl.alm  000126 aa 143151 141154 000127 aa 137154 144144 000130 aa 076151 156163 000131 aa 164141 154154 000132 aa 076115 122061 000133 aa 062056 060055 000134 aa 061062 060066 000135 aa 076163 164141 000136 aa 143153 137150 000137 aa 145141 144145 000140 aa 162056 151156 000141 aa 143154 056141 000142 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number  *text emf_et_: 27. 14 .._00000 emf_et_: 31. 25 .._00001 emf_et_: 34. 41 .._00002 emf_et_: 37. 54 .._00003 emf_et_: 40. 101 .._00004 emf_et_: 43. 131 .._00005 emf_et_: 46. 154 .._00006 emf_et_: 49. 203 .._00007 emf_et_: 52. 220 .._00010 emf_et_: 55. 234 .._00011 emf_et_: 58. 250 .._00012 emf_et_: 61. 264 .._00013 emf_et_: 64. 277 .._00014 emf_et_: 67. 316 .._00015 emf_et_: 70. 327 .._00016 emf_et_: 73. 350 .._00017 emf_et_: 76. 374 .._00020 emf_et_: 79. 407 .._00021 emf_et_: 82. 423 .._00022 emf_et_: 85. 435 .._00023 emf_et_: 88. 446 .._00024 emf_et_: 91. 457 .._00025 emf_et_: 94. 467 .._00026 emf_et_: 97. 477 .._00027 emf_et_: 100. 510 .._00030 emf_et_: 103. 521 .._00031 emf_et_: 106. 533 .._00032 emf_et_: 109. 546 .._00033 emf_et_: 112. 44 .code_end emf_et_: 27. 10 .code_start emf_et_: 27. 5 .loop emf_et_: 27. 77777 .segno emf_et_: 27, 31, 34, 37, 40, 43, 46, 49, 52, 55, 58, 61,  64, 67, 70, 73, 76, 79, 82, 85, 88, 91, 94, 97,  100, 103, 106, 109, 112. 0 .trapproc emf_et_: 27. 10 address_not_found emf_et_: 31. 1170 call_offset stack_header: 80.  10 codes emf_et_: 27, 31, 34, 37, 40, 43, 46, 49, 52, 55, 58, 61,  64, 67, 70, 73, 76, 79, 82, 85, 88, 91, 94, 97,  100, 103, 106, 109, 112. 11 empty_address_list_field emf_et_: 34.  12 empty_range emf_et_: 37. 1174 entry_offset stack_header: 84.  13 expunged_message emf_et_: 40. 14 forwarding_aborted emf_et_: 43. 15 insufficient_quota_to_write emf_et_: 46.  16 insufficient_segment_size emf_et_: 49.  0 messages emf_et_: 27, 31, 34, 37, 40, 43, 46, 49, 52, 55, 58, 61,  64, 67, 70, 73, 76, 79, 82, 85, 88, 91, 94, 97,  100, 103, 106, 109, 112. 17 msg_spec_bad_expr emf_et_: 52. 20 msg_spec_bad_keyword emf_et_: 55. 21 msg_spec_bad_number emf_et_: 58. 22 msg_spec_bad_oper emf_et_: 61. 23 msg_spec_bad_range emf_et_: 64. 24 msg_spec_bad_regexp emf_et_: 67. 25 msg_spec_invalid emf_et_: 70. 26 msg_spec_missing_delim emf_et_: 73. 27 msg_spec_mixed emf_et_: 76. 30 msg_spec_null emf_et_: 79. 31 msg_spec_too_complex emf_et_: 82. 32 no_current_message emf_et_: 85. 33 no_first_message emf_et_: 88. 34 no_last_message emf_et_: 91. 35 no_matching_messages emf_et_: 94. 36 no_messages emf_et_: 97. 37 no_messages_selected emf_et_: 100. 40 no_next_message emf_et_: 103. 41 no_previous_message emf_et_: 106. 42 no_such_message emf_et_: 109. 44 past_codes emf_et_: 27. 1171 push_offset stack_header: 81.  1173 return_no_pop_offset stack_header: 83.  1172 return_offset stack_header: 82.  43 send_mail_aborted emf_et_: 112. 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 emf_et_: 27, 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.  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. 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