ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.1-1075>ws_error_.alm ASSEMBLED ON: 08/07/87 1457.0 mst Fri OPTIONS USED: -target l68 list symbols ASSEMBLED BY: ALM Version 7.3 November 1986 ASSEMBLER CREATED: 11/26/86 1244.2 mst Wed 1 " *********************************************************** 2 " * * 3 " * Copyright, (C) Honeywell Bull Inc., 1987 * 4 " * * 5 " * Copyright, (C) Honeywell Information Systems Inc., 1986 * 6 " * * 7 " *********************************************************** 8 9 " HISTORY COMMENTS: 10 " 1) change(86-01-15,Flegel), approve(87-07-15,MCR7580), 11 " audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 12 " Created. 13 " 2) change(86-11-25,Flegel), approve(87-07-15,MCR7580), 14 " audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 15 " Added already_sleeping error code. 16 " 3) change(86-11-27,Flegel), approve(86-11-27,MCR7580), 17 " audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 18 " Approved 19 " 4) change(86-12-05,Flegel), approve(86-12-05,MCR7580), 20 " audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 21 " Added inconsistent_mowse_tables error to signal that MOWSE data has 22 " become bad. this should be treated as a fatal process error as MOWSE is 23 " no longer in a valid state. 24 " 5) change(86-12-10,Flegel), approve(86-12-10,MCR7580), 25 " audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 26 " Added error code for recursive background error description. 27 " 6) change(87-01-19,Flegel), approve(87-01-19,MCR7580), 28 " audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 29 " Added unsupported_ws_terminal error code. 30 " 7) change(87-03-24,Flegel), approve(87-03-24,MCR7580), 31 " audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 32 " Added invalid_escape_char error code. 33 " END HISTORY COMMENTS 34 35 "MOWSE Error Codes 36 37 38 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 39 et ws_error_ 000000 name ws_error_ 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 000052 .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 000052 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 40 41 ec already_sleeping,sleeping, 42 (Already sleeping.) 000010 segdef already_sleeping 000010 a0 077777 000014 000012 aa 163 154 145 145 aci "sleeping",8 000013 aa 160 151 156 147 000014 aa 021 101 154 162 acc "Already sleeping." 000015 aa 145 141 144 171 000016 aa 040 163 154 145 000017 aa 145 160 151 156 000020 aa 147 056 000 000 43 44 ec buffer_overflow,bufovr, 45 (Message buffer overflowed.) 000011 segdef buffer_overflow 000011 a0 077777 000023 000021 aa 142 165 146 157 aci "bufovr",8 000022 aa 166 162 040 040 000023 aa 032 115 145 163 acc "Message buffer overflowed." 000024 aa 163 141 147 145 000025 aa 040 142 165 146 000026 aa 146 145 162 040 000027 aa 157 166 145 162 000030 aa 146 154 157 167 000031 aa 145 144 056 000 46 47 ec cant_create_instance,cantcret, 48 (Cannot create instance of application.) 000012 segdef cant_create_instance 000012 a0 077777 000034 000032 aa 143 141 156 164 aci "cantcret",8 000033 aa 143 162 145 164 000034 aa 046 103 141 156 acc "Cannot create instance of application." 000035 aa 156 157 164 040 000036 aa 143 162 145 141 000037 aa 164 145 040 151 000040 aa 156 163 164 141 000041 aa 156 143 145 040 000042 aa 157 146 040 141 000043 aa 160 160 154 151 000044 aa 143 141 164 151 000045 aa 157 156 056 000 49 50 ec debug_already_off,debugoff, 51 (MOWSE debugging facility is already off.) 000013 segdef debug_already_off 000013 a0 077777 000050 000046 aa 144 145 142 165 aci "debugoff",8 000047 aa 147 157 146 146 000050 aa 050 115 117 127 acc "MOWSE debugging facility is already off." 000051 aa 123 105 040 144 000052 aa 145 142 165 147 000053 aa 147 151 156 147 000054 aa 040 146 141 143 000055 aa 151 154 151 164 000056 aa 171 040 151 163 000057 aa 040 141 154 162 000060 aa 145 141 144 171 000061 aa 040 157 146 146 000062 aa 056 000 000 000 52 53 ec debug_already_on,debugon, 54 (MOWSE debugging facility is already on.) 000014 segdef debug_already_on 000014 a0 077777 000065 000063 aa 144 145 142 165 aci "debugon",8 000064 aa 147 157 156 040 000065 aa 047 115 117 127 acc "MOWSE debugging facility is already on." 000066 aa 123 105 040 144 000067 aa 145 142 165 147 000070 aa 147 151 156 147 000071 aa 040 146 141 143 000072 aa 151 154 151 164 000073 aa 171 040 151 163 000074 aa 040 141 154 162 000075 aa 145 141 144 171 000076 aa 040 157 156 056 55 56 ec inconsistent_mowse_tables,badwstbl, 57 (MOWSE tables are in an inconsistent state.) 000015 segdef inconsistent_mowse_tables 000015 a0 077777 000101 000077 aa 142 141 144 167 aci "badwstbl",8 000100 aa 163 164 142 154 000101 aa 052 115 117 127 acc "MOWSE tables are in an inconsistent state." 000102 aa 123 105 040 164 000103 aa 141 142 154 145 000104 aa 163 040 141 162 000105 aa 145 040 151 156 000106 aa 040 141 156 040 000107 aa 151 156 143 157 000110 aa 156 163 151 163 000111 aa 164 145 156 164 000112 aa 040 163 164 141 000113 aa 164 145 056 000 58 59 ec input_buffer_empty,inbufept, 60 (Application tried to send empty buffer.) 000016 segdef input_buffer_empty 000016 a0 077777 000116 000114 aa 151 156 142 165 aci "inbufept",8 000115 aa 146 145 160 164 000116 aa 047 101 160 160 acc "Application tried to send empty buffer." 000117 aa 154 151 143 141 000120 aa 164 151 157 156 000121 aa 040 164 162 151 000122 aa 145 144 040 164 000123 aa 157 040 163 145 000124 aa 156 144 040 145 000125 aa 155 160 164 171 000126 aa 040 142 165 146 000127 aa 146 145 162 056 61 62 ec input_buffer_overflow,inbufovf, 63 (Application's input buffer overflowed.) 000017 segdef input_buffer_overflow 000017 a0 077777 000132 000130 aa 151 156 142 165 aci "inbufovf",8 000131 aa 146 157 166 146 000132 aa 046 101 160 160 acc "Application's input buffer overflowed." 000133 aa 154 151 143 141 000134 aa 164 151 157 156 000135 aa 047 163 040 151 000136 aa 156 160 165 164 000137 aa 040 142 165 146 000140 aa 146 145 162 040 000141 aa 157 166 145 162 000142 aa 146 154 157 167 000143 aa 145 144 056 000 64 65 ec invalid_buffer_length,invbufln, 66 (Application's buffer length is too small.) 000020 segdef invalid_buffer_length 000020 a0 077777 000146 000144 aa 151 156 166 142 aci "invbufln",8 000145 aa 165 146 154 156 000146 aa 051 101 160 160 acc "Application's buffer length is too small." 000147 aa 154 151 143 141 000150 aa 164 151 157 156 000151 aa 047 163 040 142 000152 aa 165 146 146 145 000153 aa 162 040 154 145 000154 aa 156 147 164 150 000155 aa 040 151 163 040 000156 aa 164 157 157 040 000157 aa 163 155 141 154 000160 aa 154 056 000 000 67 68 ec invalid_capability_name,invnam, 69 (Invalid capability name.) 000021 segdef invalid_capability_name 000021 a0 077777 000163 000161 aa 151 156 166 156 aci "invnam",8 000162 aa 141 155 040 040 000163 aa 030 111 156 166 acc "Invalid capability name." 000164 aa 141 154 151 144 000165 aa 040 143 141 160 000166 aa 141 142 151 154 000167 aa 151 164 171 040 000170 aa 156 141 155 145 000171 aa 056 000 000 000 70 71 ec invalid_capability_number,invnum, 72 (Invalid major capability number.) 000022 segdef invalid_capability_number 000022 a0 077777 000174 000172 aa 151 156 166 156 aci "invnum",8 000173 aa 165 155 040 040 000174 aa 040 111 156 166 acc "Invalid major capability number." 000175 aa 141 154 151 144 000176 aa 040 155 141 152 000177 aa 157 162 040 143 000200 aa 141 160 141 142 000201 aa 151 154 151 164 000202 aa 171 040 156 165 000203 aa 155 142 145 162 000204 aa 056 000 000 000 73 74 ec invalid_continue_message,invcntms, 75 (Invalid continuation message format.) 000023 segdef invalid_continue_message 000023 a0 077777 000207 000205 aa 151 156 166 143 aci "invcntms",8 000206 aa 156 164 155 163 000207 aa 044 111 156 166 acc "Invalid continuation message format." 000210 aa 141 154 151 144 000211 aa 040 143 157 156 000212 aa 164 151 156 165 000213 aa 141 164 151 157 000214 aa 156 040 155 145 000215 aa 163 163 141 147 000216 aa 145 040 146 157 000217 aa 162 155 141 164 000220 aa 056 000 000 000 76 77 ec invalid_connect_status,invcstat, 78 (Invalid connect status response.) 000024 segdef invalid_connect_status 000024 a0 077777 000223 000221 aa 151 156 166 143 aci "invcstat",8 000222 aa 163 164 141 164 000223 aa 040 111 156 166 acc "Invalid connect status response." 000224 aa 141 154 151 144 000225 aa 040 143 157 156 000226 aa 156 145 143 164 000227 aa 040 163 164 141 000230 aa 164 165 163 040 000231 aa 162 145 163 160 000232 aa 157 156 163 145 000233 aa 056 000 000 000 79 80 ec invalid_data_ptr,invdtptr, 81 (Invalid data pointer.) 000025 segdef invalid_data_ptr 000025 a0 077777 000236 000234 aa 151 156 166 144 aci "invdtptr",8 000235 aa 164 160 164 162 000236 aa 025 111 156 166 acc "Invalid data pointer." 000237 aa 141 154 151 144 000240 aa 040 144 141 164 000241 aa 141 040 160 157 000242 aa 151 156 164 145 000243 aa 162 056 000 000 82 83 ec invalid_entry_name,inventry, 84 (Invalid application entry point name.) 000026 segdef invalid_entry_name 000026 a0 077777 000246 000244 aa 151 156 166 145 aci "inventry",8 000245 aa 156 164 162 171 000246 aa 045 111 156 166 acc "Invalid application entry point name." 000247 aa 141 154 151 144 000250 aa 040 141 160 160 000251 aa 154 151 143 141 000252 aa 164 151 157 156 000253 aa 040 145 156 164 000254 aa 162 171 040 160 000255 aa 157 151 156 164 000256 aa 040 156 141 155 000257 aa 145 056 000 000 85 86 ec invalid_escape_char,badesc, 87 (Invalid escape character.) 000027 segdef invalid_escape_char 000027 a0 077777 000262 000260 aa 142 141 144 145 aci "badesc",8 000261 aa 163 143 040 040 000262 aa 031 111 156 166 acc "Invalid escape character." 000263 aa 141 154 151 144 000264 aa 040 145 163 143 000265 aa 141 160 145 040 000266 aa 143 150 141 162 000267 aa 141 143 164 145 000270 aa 162 056 000 000 88 89 ec invalid_last_message,invlstms, 90 (Invalid last message format.) 000030 segdef invalid_last_message 000030 a0 077777 000273 000271 aa 151 156 166 154 aci "invlstms",8 000272 aa 163 164 155 163 000273 aa 034 111 156 166 acc "Invalid last message format." 000274 aa 141 154 151 144 000275 aa 040 154 141 163 000276 aa 164 040 155 145 000277 aa 163 163 141 147 000300 aa 145 040 146 157 000301 aa 162 155 141 164 000302 aa 056 000 000 000 91 92 ec invalid_mcb,invmcb, 93 (Invalid MOWSE Control Block.) 000031 segdef invalid_mcb 000031 a0 077777 000305 000303 aa 151 156 166 155 aci "invmcb",8 000304 aa 143 142 040 040 000305 aa 034 111 156 166 acc "Invalid MOWSE Control Block." 000306 aa 141 154 151 144 000307 aa 040 115 117 127 000310 aa 123 105 040 103 000311 aa 157 156 164 162 000312 aa 157 154 040 102 000313 aa 154 157 143 153 000314 aa 056 000 000 000 94 95 ec invalid_message,invmsg, 96 (Invalid message format.) 000032 segdef invalid_message 000032 a0 077777 000317 000315 aa 151 156 166 155 aci "invmsg",8 000316 aa 163 147 040 040 000317 aa 027 111 156 166 acc "Invalid message format." 000320 aa 141 154 151 144 000321 aa 040 155 145 163 000322 aa 163 141 147 145 000323 aa 040 146 157 162 000324 aa 155 141 164 056 97 98 ec invalid_minor_capability,invmin, 99 (Invalid minor capability number.) 000033 segdef invalid_minor_capability 000033 a0 077777 000327 000325 aa 151 156 166 155 aci "invmin",8 000326 aa 151 156 040 040 000327 aa 040 111 156 166 acc "Invalid minor capability number." 000330 aa 141 154 151 144 000331 aa 040 155 151 156 000332 aa 157 162 040 143 000333 aa 141 160 141 142 000334 aa 151 154 151 164 000335 aa 171 040 156 165 000336 aa 155 142 145 162 000337 aa 056 000 000 000 100 101 ec invalid_more_message,invmorms, 102 (Invalid more message fromat.) 000034 segdef invalid_more_message 000034 a0 077777 000342 000340 aa 151 156 166 155 aci "invmorms",8 000341 aa 157 162 155 163 000342 aa 034 111 156 166 acc "Invalid more message fromat." 000343 aa 141 154 151 144 000344 aa 040 155 157 162 000345 aa 145 040 155 145 000346 aa 163 163 141 147 000347 aa 145 040 146 162 000350 aa 157 155 141 164 000351 aa 056 000 000 000 103 104 ec invalid_sleep_interval,invsleep, 105 (Invalid sleep interval.) 000035 segdef invalid_sleep_interval 000035 a0 077777 000354 000352 aa 151 156 166 163 aci "invsleep",8 000353 aa 154 145 145 160 000354 aa 027 111 156 166 acc "Invalid sleep interval." 000355 aa 141 154 151 144 000356 aa 040 163 154 145 000357 aa 145 160 040 151 000360 aa 156 164 145 162 000361 aa 166 141 154 056 106 107 ec invalid_system_id,invsysid, 108 (Invalid system identifier.) 000036 segdef invalid_system_id 000036 a0 077777 000364 000362 aa 151 156 166 163 aci "invsysid",8 000363 aa 171 163 151 144 000364 aa 032 111 156 166 acc "Invalid system identifier." 000365 aa 141 154 151 144 000366 aa 040 163 171 163 000367 aa 164 145 155 040 000370 aa 151 144 145 156 000371 aa 164 151 146 151 000372 aa 145 162 056 000 109 110 ec no_capability,no_cap, 111 (Capability does not exist.) 000037 segdef no_capability 000037 a0 077777 000375 000373 aa 156 157 137 143 aci "no_cap",8 000374 aa 141 160 040 040 000375 aa 032 103 141 160 acc "Capability does not exist." 000376 aa 141 142 151 154 000377 aa 151 164 171 040 000400 aa 144 157 145 163 000401 aa 040 156 157 164 000402 aa 040 145 170 151 000403 aa 163 164 056 000 112 113 ec not_available,notavlbe, 114 (Entry unavailable.) 000040 segdef not_available 000040 a0 077777 000406 000404 aa 156 157 164 141 aci "notavlbe",8 000405 aa 166 154 142 145 000406 aa 022 105 156 164 acc "Entry unavailable." 000407 aa 162 171 040 165 000410 aa 156 141 166 141 000411 aa 151 154 141 142 000412 aa 154 145 056 000 115 116 ec not_suspended,nosspnd, 117 (Application is not suspended.) 000041 segdef not_suspended 000041 a0 077777 000415 000413 aa 156 157 163 163 aci "nosspnd",8 000414 aa 160 156 144 040 000415 aa 035 101 160 160 acc "Application is not suspended." 000416 aa 154 151 143 141 000417 aa 164 151 157 156 000420 aa 040 151 163 040 000421 aa 156 157 164 040 000422 aa 163 165 163 160 000423 aa 145 156 144 145 000424 aa 144 056 000 000 118 119 ec output_buffer_overflow,otbufovf, 120 (Application's output buffer overflowed.) 000042 segdef output_buffer_overflow 000042 a0 077777 000427 000425 aa 157 164 142 165 aci "otbufovf",8 000426 aa 146 157 166 146 000427 aa 047 101 160 160 acc "Application's output buffer overflowed." 000430 aa 154 151 143 141 000431 aa 164 151 157 156 000432 aa 047 163 040 157 000433 aa 165 164 160 165 000434 aa 164 040 142 165 000435 aa 146 146 145 162 000436 aa 040 157 166 145 000437 aa 162 146 154 157 000440 aa 167 145 144 056 121 122 ec recursive_background_error,recbgerr, 123 (Recursive errors occurred in background application.) 000043 segdef recursive_background_error 000043 a0 077777 000443 000441 aa 162 145 143 142 aci "recbgerr",8 000442 aa 147 145 162 162 000443 aa 064 122 145 143 acc "Recursive errors occurred in background application." 000444 aa 165 162 163 151 000445 aa 166 145 040 145 000446 aa 162 162 157 162 000447 aa 163 040 157 143 000450 aa 143 165 162 162 000451 aa 145 144 040 151 000452 aa 156 040 142 141 000453 aa 143 153 147 162 000454 aa 157 165 156 144 000455 aa 040 141 160 160 000456 aa 154 151 143 141 000457 aa 164 151 157 156 000460 aa 056 000 000 000 124 125 ec sleeping,sleep, 126 (Application is sleeping.) 000044 segdef sleeping 000044 a0 077777 000463 000461 aa 163 154 145 145 aci "sleep",8 000462 aa 160 040 040 040 000463 aa 030 101 160 160 acc "Application is sleeping." 000464 aa 154 151 143 141 000465 aa 164 151 157 156 000466 aa 040 151 163 040 000467 aa 163 154 145 145 000470 aa 160 151 156 147 000471 aa 056 000 000 000 127 128 ec suspended,suspend, 129 (Application is suspended.) 000045 segdef suspended 000045 a0 077777 000474 000472 aa 163 165 163 160 aci "suspend",8 000473 aa 145 156 144 040 000474 aa 031 101 160 160 acc "Application is suspended." 000475 aa 154 151 143 141 000476 aa 164 151 157 156 000477 aa 040 151 163 040 000500 aa 163 165 163 160 000501 aa 145 156 144 145 000502 aa 144 056 000 000 130 131 ec trace_already_off,traceoff, 132 (MOWSE tracing facility is already off.) 000046 segdef trace_already_off 000046 a0 077777 000505 000503 aa 164 162 141 143 aci "traceoff",8 000504 aa 145 157 146 146 000505 aa 046 115 117 127 acc "MOWSE tracing facility is already off." 000506 aa 123 105 040 164 000507 aa 162 141 143 151 000510 aa 156 147 040 146 000511 aa 141 143 151 154 000512 aa 151 164 171 040 000513 aa 151 163 040 141 000514 aa 154 162 145 141 000515 aa 144 171 040 157 000516 aa 146 146 056 000 133 134 ec trace_already_on,traceon, 135 (MOWSE tracing facility is already on.) 000047 segdef trace_already_on 000047 a0 077777 000521 000517 aa 164 162 141 143 aci "traceon",8 000520 aa 145 157 156 040 000521 aa 045 115 117 127 acc "MOWSE tracing facility is already on." 000522 aa 123 105 040 164 000523 aa 162 141 143 151 000524 aa 156 147 040 146 000525 aa 141 143 151 154 000526 aa 151 164 171 040 000527 aa 151 163 040 141 000530 aa 154 162 145 141 000531 aa 144 171 040 157 000532 aa 156 056 000 000 136 137 ec unsupported_ws_terminal,nowsterm, 138 (Specified terminal is not supported by MOWSE.) 000050 segdef unsupported_ws_terminal 000050 a0 077777 000535 000533 aa 156 157 167 163 aci "nowsterm",8 000534 aa 164 145 162 155 000535 aa 055 123 160 145 acc "Specified terminal is not supported by MOWSE." 000536 aa 143 151 146 151 000537 aa 145 144 040 164 000540 aa 145 162 155 151 000541 aa 156 141 154 040 000542 aa 151 163 040 156 000543 aa 157 164 040 163 000544 aa 165 160 160 157 000545 aa 162 164 145 144 000546 aa 040 142 171 040 000547 aa 115 117 127 123 000550 aa 105 056 000 000 139 140 ec ws_video_invoked,wsvideo, 141 (The window system is invoked.) 000051 segdef ws_video_invoked 000051 a0 077777 000553 000551 aa 167 163 166 151 aci "wsvideo",8 000552 aa 144 145 157 040 000553 aa 035 124 150 145 acc "The window system is invoked." 000554 aa 040 167 151 156 000555 aa 144 157 167 040 000556 aa 163 171 163 164 000557 aa 145 155 040 151 000560 aa 163 040 151 156 000561 aa 166 157 153 145 000562 aa 144 056 000 000 142 143 end NO LITERALS NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 000564 5a 000003 000000 000565 5a 000451 600000 000566 aa 000000 000000 000567 55 000011 000002 000570 5a 000002 400003 000571 55 000006 000011 000572 aa 011 167 163 137 000573 aa 145 162 162 157 000574 aa 162 137 000 000 000575 55 000021 000003 000576 2a 000051 400001 000577 55 000014 000003 000600 aa 020 167 163 137 ws_video_invoked 000601 aa 166 151 144 145 000602 aa 157 137 151 156 000603 aa 166 157 153 145 000604 aa 144 000 000 000 000605 55 000032 000011 000606 2a 000050 400001 000607 55 000024 000003 000610 aa 027 165 156 163 unsupported_ws_terminal 000611 aa 165 160 160 157 000612 aa 162 164 145 144 000613 aa 137 167 163 137 000614 aa 164 145 162 155 000615 aa 151 156 141 154 000616 55 000042 000021 000617 2a 000047 400001 000620 55 000035 000003 000621 aa 020 164 162 141 trace_already_on 000622 aa 143 145 137 141 000623 aa 154 162 145 141 000624 aa 144 171 137 157 000625 aa 156 000 000 000 000626 55 000052 000032 000627 2a 000046 400001 000630 55 000045 000003 000631 aa 021 164 162 141 trace_already_off 000632 aa 143 145 137 141 000633 aa 154 162 145 141 000634 aa 144 171 137 157 000635 aa 146 146 000 000 000636 55 000060 000042 000637 2a 000045 400001 000640 55 000055 000003 000641 aa 011 163 165 163 suspended 000642 aa 160 145 156 144 000643 aa 145 144 000 000 000644 55 000066 000052 000645 2a 000044 400001 000646 55 000063 000003 000647 aa 010 163 154 145 sleeping 000650 aa 145 160 151 156 000651 aa 147 000 000 000 000652 55 000100 000060 000653 2a 000043 400001 000654 55 000071 000003 000655 aa 032 162 145 143 recursive_background_error 000656 aa 165 162 163 151 000657 aa 166 145 137 142 000660 aa 141 143 153 147 000661 aa 162 157 165 156 000662 aa 144 137 145 162 000663 aa 162 157 162 000 000664 55 000111 000066 000665 2a 000042 400001 000666 55 000103 000003 000667 aa 026 157 165 164 output_buffer_overflow 000670 aa 160 165 164 137 000671 aa 142 165 146 146 000672 aa 145 162 137 157 000673 aa 166 145 162 146 000674 aa 154 157 167 000 000675 55 000120 000100 000676 2a 000041 400001 000677 55 000114 000003 000700 aa 015 156 157 164 not_suspended 000701 aa 137 163 165 163 000702 aa 160 145 156 144 000703 aa 145 144 000 000 000704 55 000127 000111 000705 2a 000040 400001 000706 55 000123 000003 000707 aa 015 156 157 164 not_available 000710 aa 137 141 166 141 000711 aa 151 154 141 142 000712 aa 154 145 000 000 000713 55 000136 000120 000714 2a 000037 400001 000715 55 000132 000003 000716 aa 015 156 157 137 no_capability 000717 aa 143 141 160 141 000720 aa 142 151 154 151 000721 aa 164 171 000 000 000722 55 000146 000127 000723 2a 000036 400001 000724 55 000141 000003 000725 aa 021 151 156 166 invalid_system_id 000726 aa 141 154 151 144 000727 aa 137 163 171 163 000730 aa 164 145 155 137 000731 aa 151 144 000 000 000732 55 000157 000136 000733 2a 000035 400001 000734 55 000151 000003 000735 aa 026 151 156 166 invalid_sleep_interval 000736 aa 141 154 151 144 000737 aa 137 163 154 145 000740 aa 145 160 137 151 000741 aa 156 164 145 162 000742 aa 166 141 154 000 000743 55 000170 000146 000744 2a 000034 400001 000745 55 000162 000003 000746 aa 024 151 156 166 invalid_more_message 000747 aa 141 154 151 144 000750 aa 137 155 157 162 000751 aa 145 137 155 145 000752 aa 163 163 141 147 000753 aa 145 000 000 000 000754 55 000202 000157 000755 2a 000033 400001 000756 55 000173 000003 000757 aa 030 151 156 166 invalid_minor_capability 000760 aa 141 154 151 144 000761 aa 137 155 151 156 000762 aa 157 162 137 143 000763 aa 141 160 141 142 000764 aa 151 154 151 164 000765 aa 171 000 000 000 000766 55 000211 000170 000767 2a 000032 400001 000770 55 000205 000003 000771 aa 017 151 156 166 invalid_message 000772 aa 141 154 151 144 000773 aa 137 155 145 163 000774 aa 163 141 147 145 000775 55 000217 000202 000776 2a 000031 400001 000777 55 000214 000003 001000 aa 013 151 156 166 invalid_mcb 001001 aa 141 154 151 144 001002 aa 137 155 143 142 001003 55 000230 000211 001004 2a 000030 400001 001005 55 000222 000003 001006 aa 024 151 156 166 invalid_last_message 001007 aa 141 154 151 144 001010 aa 137 154 141 163 001011 aa 164 137 155 145 001012 aa 163 163 141 147 001013 aa 145 000 000 000 001014 55 000240 000217 001015 2a 000027 400001 001016 55 000233 000003 001017 aa 023 151 156 166 invalid_escape_char 001020 aa 141 154 151 144 001021 aa 137 145 163 143 001022 aa 141 160 145 137 001023 aa 143 150 141 162 001024 55 000250 000230 001025 2a 000026 400001 001026 55 000243 000003 001027 aa 022 151 156 166 invalid_entry_name 001030 aa 141 154 151 144 001031 aa 137 145 156 164 001032 aa 162 171 137 156 001033 aa 141 155 145 000 001034 55 000260 000240 001035 2a 000025 400001 001036 55 000253 000003 001037 aa 020 151 156 166 invalid_data_ptr 001040 aa 141 154 151 144 001041 aa 137 144 141 164 001042 aa 141 137 160 164 001043 aa 162 000 000 000 001044 55 000271 000250 001045 2a 000024 400001 001046 55 000263 000003 001047 aa 026 151 156 166 invalid_connect_status 001050 aa 141 154 151 144 001051 aa 137 143 157 156 001052 aa 156 145 143 164 001053 aa 137 163 164 141 001054 aa 164 165 163 000 001055 55 000303 000260 001056 2a 000023 400001 001057 55 000274 000003 001060 aa 030 151 156 166 invalid_continue_message 001061 aa 141 154 151 144 001062 aa 137 143 157 156 001063 aa 164 151 156 165 001064 aa 145 137 155 145 001065 aa 163 163 141 147 001066 aa 145 000 000 000 001067 55 000315 000271 001070 2a 000022 400001 001071 55 000306 000003 001072 aa 031 151 156 166 invalid_capability_number 001073 aa 141 154 151 144 001074 aa 137 143 141 160 001075 aa 141 142 151 154 001076 aa 151 164 171 137 001077 aa 156 165 155 142 001100 aa 145 162 000 000 001101 55 000326 000303 001102 2a 000021 400001 001103 55 000320 000003 001104 aa 027 151 156 166 invalid_capability_name 001105 aa 141 154 151 144 001106 aa 137 143 141 160 001107 aa 141 142 151 154 001110 aa 151 164 171 137 001111 aa 156 141 155 145 001112 55 000337 000315 001113 2a 000020 400001 001114 55 000331 000003 001115 aa 025 151 156 166 invalid_buffer_length 001116 aa 141 154 151 144 001117 aa 137 142 165 146 001120 aa 146 145 162 137 001121 aa 154 145 156 147 001122 aa 164 150 000 000 001123 55 000350 000326 001124 2a 000017 400001 001125 55 000342 000003 001126 aa 025 151 156 160 input_buffer_overflow 001127 aa 165 164 137 142 001130 aa 165 146 146 145 001131 aa 162 137 157 166 001132 aa 145 162 146 154 001133 aa 157 167 000 000 001134 55 000360 000337 001135 2a 000016 400001 001136 55 000353 000003 001137 aa 022 151 156 160 input_buffer_empty 001140 aa 165 164 137 142 001141 aa 165 146 146 145 001142 aa 162 137 145 155 001143 aa 160 164 171 000 001144 55 000372 000350 001145 2a 000015 400001 001146 55 000363 000003 001147 aa 031 151 156 143 inconsistent_mowse_tables 001150 aa 157 156 163 151 001151 aa 163 164 145 156 001152 aa 164 137 155 157 001153 aa 167 163 145 137 001154 aa 164 141 142 154 001155 aa 145 163 000 000 001156 55 000402 000360 001157 2a 000014 400001 001160 55 000375 000003 001161 aa 020 144 145 142 debug_already_on 001162 aa 165 147 137 141 001163 aa 154 162 145 141 001164 aa 144 171 137 157 001165 aa 156 000 000 000 001166 55 000412 000372 001167 2a 000013 400001 001170 55 000405 000003 001171 aa 021 144 145 142 debug_already_off 001172 aa 165 147 137 141 001173 aa 154 162 145 141 001174 aa 144 171 137 157 001175 aa 146 146 000 000 001176 55 000423 000402 001177 2a 000012 400001 001200 55 000415 000003 001201 aa 024 143 141 156 cant_create_instance 001202 aa 164 137 143 162 001203 aa 145 141 164 145 001204 aa 137 151 156 163 001205 aa 164 141 156 143 001206 aa 145 000 000 000 001207 55 000432 000412 001210 2a 000011 400001 001211 55 000426 000003 001212 aa 017 142 165 146 buffer_overflow 001213 aa 146 145 162 137 001214 aa 157 166 145 162 001215 aa 146 154 157 167 001216 55 000442 000423 001217 2a 000010 400001 001220 55 000435 000003 001221 aa 020 141 154 162 already_sleeping 001222 aa 145 141 144 171 001223 aa 137 163 154 145 001224 aa 145 160 151 156 001225 aa 147 000 000 000 001226 55 000002 000432 001227 6a 000000 400002 001230 55 000445 000003 001231 aa 014 163 171 155 symbol_table 001232 aa 142 157 154 137 001233 aa 164 141 142 154 001234 aa 145 000 000 000 DEFINITIONS HASH TABLE 001235 aa 000000 000065 001236 5a 000157 000000 001237 5a 000217 000000 001240 5a 000230 000000 001241 5a 000127 000000 001242 5a 000240 000000 001243 5a 000350 000000 001244 5a 000052 000000 001245 5a 000136 000000 001246 5a 000250 000000 001247 5a 000432 000000 001250 5a 000021 000000 001251 5a 000100 000000 001252 5a 000202 000000 001253 5a 000402 000000 001254 5a 000372 000000 001255 aa 000000 000000 001256 aa 000000 000000 001257 aa 000000 000000 001260 5a 000211 000000 001261 aa 000000 000000 001262 aa 000000 000000 001263 aa 000000 000000 001264 aa 000000 000000 001265 aa 000000 000000 001266 5a 000111 000000 001267 5a 000120 000000 001270 5a 000066 000000 001271 5a 000360 000000 001272 5a 000442 000000 001273 aa 000000 000000 001274 aa 000000 000000 001275 5a 000412 000000 001276 5a 000011 000000 001277 5a 000042 000000 001300 5a 000032 000000 001301 aa 000000 000000 001302 aa 000000 000000 001303 aa 000000 000000 001304 5a 000423 000000 001305 aa 000000 000000 001306 aa 000000 000000 001307 aa 000000 000000 001310 aa 000000 000000 001311 5a 000303 000000 001312 aa 000000 000000 001313 5a 000170 000000 001314 5a 000271 000000 001315 5a 000315 000000 001316 5a 000337 000000 001317 5a 000146 000000 001320 5a 000060 000000 001321 5a 000260 000000 001322 5a 000326 000000 NO EXTERNAL NAMES NO TRAP POINTER WORDS TYPE PAIR BLOCKS 001323 aa 000001 000000 001324 aa 000000 000000 INTERNAL EXPRESSION WORDS 001325 50 000537 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 02 000564 000054 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000052 000057 000007 a2 000000 000042 000052 9a 777726 0000 46 *text| 000053 5a 000541 0000 00 FIRST REFERENCE TRAP LIST 000054 aa 000000 000001 000055 aa 000000 000001 000056 2a 000052 000000 000057 aa 000000 000000 SYMBOL INFORMATION SYMBOL TABLE HEADER 000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000007 000004 aa 000000 115030 000005 aa 273207 326355 000006 aa 000000 115527 000007 aa 652070 757656 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 000266 000020 aa 000000 000137 000021 aa 000200 000166 000022 aa 000256 000137 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 067056 063040 000030 aa 116157 166145 000031 aa 155142 145162 000032 aa 040061 071070 000033 aa 066040 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 055164 141162 000045 aa 147145 164040 000046 aa 154066 070040 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 040154 151163 000057 aa 164040 163171 000060 aa 155142 157154 000061 aa 163040 040040 000062 aa 040040 040040 000063 aa 040040 040040 000064 aa 000000 000001 000065 aa 000000 000003 000066 aa 000102 000056 000067 aa 155267 026776 000070 aa 000000 115527 000071 aa 651074 200000 000072 aa 000116 000037 000073 aa 120665 316464 000074 aa 000000 112067 000075 aa 253504 600000 000076 aa 000126 000042 000077 aa 147777 464111 000100 aa 000000 115000 000101 aa 507463 000000 000102 aa 076163 160145 >special_ldd>install>MR12.1-1075>ws_error_.alm 000103 aa 143151 141154 000104 aa 137154 144144 000105 aa 076151 156163 000106 aa 164141 154154 000107 aa 076115 122061 000110 aa 062056 061055 000111 aa 061060 067065 000112 aa 076167 163137 000113 aa 145162 162157 000114 aa 162137 056141 000115 aa 154155 040040 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 076154 144144 >ldd>include>stack_header.incl.alm 000127 aa 076151 156143 000130 aa 154165 144145 000131 aa 076163 164141 000132 aa 143153 137150 000133 aa 145141 144145 000134 aa 162056 151156 000135 aa 143154 056141 000136 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number *text ws_error_: 39. 14 .._00000 ws_error_: 42. 23 .._00001 ws_error_: 45. 34 .._00002 ws_error_: 48. 50 .._00003 ws_error_: 51. 65 .._00004 ws_error_: 54. 101 .._00005 ws_error_: 57. 116 .._00006 ws_error_: 60. 132 .._00007 ws_error_: 63. 146 .._00010 ws_error_: 66. 163 .._00011 ws_error_: 69. 174 .._00012 ws_error_: 72. 207 .._00013 ws_error_: 75. 223 .._00014 ws_error_: 78. 236 .._00015 ws_error_: 81. 246 .._00016 ws_error_: 84. 262 .._00017 ws_error_: 87. 273 .._00020 ws_error_: 90. 305 .._00021 ws_error_: 93. 317 .._00022 ws_error_: 96. 327 .._00023 ws_error_: 99. 342 .._00024 ws_error_: 102. 354 .._00025 ws_error_: 105. 364 .._00026 ws_error_: 108. 375 .._00027 ws_error_: 111. 406 .._00030 ws_error_: 114. 415 .._00031 ws_error_: 117. 427 .._00032 ws_error_: 120. 443 .._00033 ws_error_: 123. 463 .._00034 ws_error_: 126. 474 .._00035 ws_error_: 129. 505 .._00036 ws_error_: 132. 521 .._00037 ws_error_: 135. 535 .._00040 ws_error_: 138. 553 .._00041 ws_error_: 141. 52 .code_end ws_error_: 39. 10 .code_start ws_error_: 39. 5 .loop ws_error_: 39. 77777 .segno ws_error_: 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 114, 117, 120, 123, 126, 129, 132, 135, 138, 141. 0 .trapproc ws_error_: 39. 10 already_sleeping ws_error_: 42. 11 buffer_overflow ws_error_: 45. 1170 call_offset stack_header: 80. 12 cant_create_instance ws_error_: 48. 10 codes ws_error_: 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 114, 117, 120, 123, 126, 129, 132, 135, 138, 141. 13 debug_already_off ws_error_: 51. 14 debug_already_on ws_error_: 54. 1174 entry_offset stack_header: 84. 15 inconsistent_mowse_tables ws_error_: 57. 16 input_buffer_empty ws_error_: 60. 17 input_buffer_overflow ws_error_: 63. 20 invalid_buffer_length ws_error_: 66. 21 invalid_capability_name ws_error_: 69. 22 invalid_capability_number ws_error_: 72. 24 invalid_connect_status ws_error_: 78. 23 invalid_continue_message ws_error_: 75. 25 invalid_data_ptr ws_error_: 81. 26 invalid_entry_name ws_error_: 84. 27 invalid_escape_char ws_error_: 87. 30 invalid_last_message ws_error_: 90. 31 invalid_mcb ws_error_: 93. 32 invalid_message ws_error_: 96. 33 invalid_minor_capability ws_error_: 99. 34 invalid_more_message ws_error_: 102. 35 invalid_sleep_interval ws_error_: 105. 36 invalid_system_id ws_error_: 108. 0 messages ws_error_: 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 114, 117, 120, 123, 126, 129, 132, 135, 138, 141. 40 not_available ws_error_: 114. 41 not_suspended ws_error_: 117. 37 no_capability ws_error_: 111. 42 output_buffer_overflow ws_error_: 120. 52 past_codes ws_error_: 39. 1171 push_offset stack_header: 81. 43 recursive_background_error ws_error_: 123. 1173 return_no_pop_offset stack_header: 83. 1172 return_offset stack_header: 82. 44 sleeping ws_error_: 126. 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 ws_error_: 39, 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. 45 suspended ws_error_: 129. 46 trace_already_off ws_error_: 132. 47 trace_already_on ws_error_: 135. 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. 50 unsupported_ws_terminal ws_error_: 138. 51 ws_video_invoked ws_error_: 141. 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