ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.0-1206>fortran_io_error_.alm ASSEMBLED ON: 11/05/86 1056.3 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 Limited, 1983 *  4 " * *  5 " * Copyright (c) 1972 by Massachusetts Institute of *  6 " * Technology and Honeywell Information Systems, Inc. *  7 " * *  8 " ******************************************************  9  10 " Written: June 1977, David Levin.  11  12 " Modified: 13 " 8 September 1977, David Levin - add not_scratch_file.  14 " 11 August 1977, David Levin - add cannot_reopen, not_blocked, wrong_mode.  15 " 26 Apr 82, HH - correct 'invalid_scale_factor' message.  16 " 19 Apr 82, HH - add 'read_after_eof' and 'write_after_eof'.  17 " add descriptive comments and fix existing error text.  18 " 15 July 83, MM - 406: change not_scratch_file to leave out the word 'created'.  19  20 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  21  22  23  24 et fortran_io_error_   000000 name fortran_io_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 000071 .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 000071 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   25  26  27  28 " Errors in access field such as: value too long, value all blank.  29 "  30 ec access_field_error,accferr, 31 (Error in access field.)  000010 segdef access_field_error 000010 a0 077777 000014 000012 aa 141 143 143 146 aci "accferr",8  000013 aa 145 162 162 040 000014 aa 026 105 162 162 acc "Error in access field."  000015 aa 157 162 040 151 000016 aa 156 040 141 143 000017 aa 143 145 163 163 000020 aa 040 146 151 145 000021 aa 154 144 056 000  32 "  33 " An attribute is specified that cannot be specified for a connected file.  34 " Accompanying text identifies the attribute.  35 "  36 ec already_connected,connectd, 37 (This open attribute cannot be supplied if the file is already connected.) 000011 segdef already_connected  000011 a0 077777 000024 000022 aa 143 157 156 156 aci "connectd",8  000023 aa 145 143 164 144 000024 aa 110 124 150 151 acc "This open attribute cannot be supplied if the file is already connected."  000025 aa 163 040 157 160 000026 aa 145 156 040 141 000027 aa 164 164 162 151 000030 aa 142 165 164 145 000031 aa 040 143 141 156 000032 aa 156 157 164 040 000033 aa 142 145 040 163 000034 aa 165 160 160 154 000035 aa 151 145 144 040 000036 aa 151 146 040 164 000037 aa 150 145 040 146 000040 aa 151 154 145 040 000041 aa 151 163 040 141 000042 aa 154 162 145 141 000043 aa 144 171 040 143 000044 aa 157 156 156 145 000045 aa 143 164 145 144 000046 aa 056 000 000 000  38 "  39 " An attribute is specified that cannot be specified for a file not opened by fortran.  40 " Accompanying text identifies the attribute.  41 "  42 ec already_opened,opened,  43 (This open attribute cannot be supplied if the file is already opened.)  000012 segdef already_opened 000012 a0 077777 000051 000047 aa 157 160 145 156 aci "opened",8  000050 aa 145 144 040 040 000051 aa 105 124 150 151 acc "This open attribute cannot be supplied if the file is already opened."  000052 aa 163 040 157 160 000053 aa 145 156 040 141 000054 aa 164 164 162 151 000055 aa 142 165 164 145 000056 aa 040 143 141 156 000057 aa 156 157 164 040 000060 aa 142 145 040 163 000061 aa 165 160 160 154 000062 aa 151 145 144 040 000063 aa 151 146 040 164 000064 aa 150 145 040 146 000065 aa 151 154 145 040 000066 aa 151 163 040 141 000067 aa 154 162 145 141 000070 aa 144 171 040 157 000071 aa 160 145 156 145 000072 aa 144 056 000 000  44 "  45 " Errors such as: value too long, value all blank.  46 "  47 ec attach_desc_field_error,attferr,  48 (Error in the attach description field.)  000013 segdef attach_desc_field_error  000013 a0 077777 000075 000073 aa 141 164 164 146 aci "attferr",8  000074 aa 145 162 162 040 000075 aa 046 105 162 162 acc "Error in the attach description field."  000076 aa 157 162 040 151 000077 aa 156 040 164 150 000100 aa 145 040 141 164 000101 aa 164 141 143 150 000102 aa 040 144 145 163 000103 aa 143 162 151 160 000104 aa 164 151 157 156 000105 aa 040 146 151 145 000106 aa 154 144 056 000  49 ec bad_char,bad_char,(Invalid or unexpected character in external data field.) 000014 segdef bad_char  000014 a0 077777 000111 000107 aa 142 141 144 137 aci "bad_char",8  000110 aa 143 150 141 162 000111 aa 067 111 156 166 acc "Invalid or unexpected character in external data field." 000112 aa 141 154 151 144 000113 aa 040 157 162 040 000114 aa 165 156 145 170 000115 aa 160 145 143 164 000116 aa 145 144 040 143 000117 aa 150 141 162 141 000120 aa 143 164 145 162 000121 aa 040 151 156 040 000122 aa 145 170 164 145 000123 aa 162 156 141 154 000124 aa 040 144 141 164 000125 aa 141 040 146 151 000126 aa 145 154 144 056  50 "  51 " Not a sequential file or I/O module does not support rewind or backspace. 52 "  53 ec blank_field_error,blnkferr,(Error in the blank field.)  000015 segdef blank_field_error  000015 a0 077777 000131 000127 aa 142 154 156 153 aci "blnkferr",8  000130 aa 146 145 162 162 000131 aa 031 105 162 162 acc "Error in the blank field."  000132 aa 157 162 040 151 000133 aa 156 040 164 150 000134 aa 145 040 142 154 000135 aa 141 156 153 040 000136 aa 146 151 145 154 000137 aa 144 056 000 000  54  55 ec cannot_position,no_pos, 56 (This file cannot be backspaced or rewound.)  000016 segdef cannot_position  000016 a0 077777 000142 000140 aa 156 157 137 160 aci "no_pos",8  000141 aa 157 163 040 040 000142 aa 052 124 150 151 acc "This file cannot be backspaced or rewound."  000143 aa 163 040 146 151 000144 aa 154 145 040 143 000145 aa 141 156 156 157 000146 aa 164 040 142 145 000147 aa 040 142 141 143 000150 aa 153 163 160 141 000151 aa 143 145 144 040 000152 aa 157 162 040 162 000153 aa 145 167 157 165 000154 aa 156 144 056 000  57 "  58 " Not open for input.  59 "  60 ec cannot_read,no_read,  61 (This file cannot be read.)  000017 segdef cannot_read  000017 a0 077777 000157 000155 aa 156 157 137 162 aci "no_read",8  000156 aa 145 141 144 040 000157 aa 031 124 150 151 acc "This file cannot be read."  000160 aa 163 040 146 151 000161 aa 154 145 040 143 000162 aa 141 156 156 157 000163 aa 164 040 142 145 000164 aa 040 162 145 141 000165 aa 144 056 000 000  62 "  63 " Attempt to reopen fails, probably because I/O switch does not support requested opening mode. 64 " Possibly user does not have access to write.  65 "  66 ec cannot_reopen,noreopen, 67 (This file cannot be opened with the requested mode.)  000020 segdef cannot_reopen  000020 a0 077777 000170 000166 aa 156 157 162 145 aci "noreopen",8  000167 aa 157 160 145 156 000170 aa 063 124 150 151 acc "This file cannot be opened with the requested mode." 000171 aa 163 040 146 151 000172 aa 154 145 040 143 000173 aa 141 156 156 157 000174 aa 164 040 142 145 000175 aa 040 157 160 145 000176 aa 156 145 144 040 000177 aa 167 151 164 150 000200 aa 040 164 150 145 000201 aa 040 162 145 161 000202 aa 165 145 163 164 000203 aa 145 144 040 155 000204 aa 157 144 145 056  68 ec cannot_truncate,no_trunc,(This file opening does not permit file truncation.)  000021 segdef cannot_truncate  000021 a0 077777 000207 000205 aa 156 157 137 164 aci "no_trunc",8  000206 aa 162 165 156 143 000207 aa 062 124 150 151 acc "This file opening does not permit file truncation."  000210 aa 163 040 146 151 000211 aa 154 145 040 157 000212 aa 160 145 156 151 000213 aa 156 147 040 144 000214 aa 157 145 163 040 000215 aa 156 157 164 040 000216 aa 160 145 162 155 000217 aa 151 164 040 146 000220 aa 151 154 145 040 000221 aa 164 162 165 156 000222 aa 143 141 164 151 000223 aa 157 156 056 000  69 ec cannot_write,no_write,(This file opening does not permit output operations.)  000022 segdef cannot_write  000022 a0 077777 000226 000224 aa 156 157 137 167 aci "no_write",8  000225 aa 162 151 164 145 000226 aa 064 124 150 151 acc "This file opening does not permit output operations."  000227 aa 163 040 146 151 000230 aa 154 145 040 157 000231 aa 160 145 156 151 000232 aa 156 147 040 144 000233 aa 157 145 163 040 000234 aa 156 157 164 040 000235 aa 160 145 162 155 000236 aa 151 164 040 157 000237 aa 165 164 160 165 000240 aa 164 040 157 160 000241 aa 145 162 141 164 000242 aa 151 157 156 163 000243 aa 056 000 000 000  70 ec close_attr_error,clse_err,(Error in the close statement attributes.)  000023 segdef close_attr_error  000023 a0 077777 000246 000244 aa 143 154 163 145 aci "clse_err",8  000245 aa 137 145 162 162 000246 aa 050 105 162 162 acc "Error in the close statement attributes."  000247 aa 157 162 040 151 000250 aa 156 040 164 150 000251 aa 145 040 143 154 000252 aa 157 163 145 040 000253 aa 163 164 141 164 000254 aa 145 155 145 156 000255 aa 164 040 141 164 000256 aa 164 162 151 142 000257 aa 165 164 145 163 000260 aa 056 000 000 000  71 ec conversion_error,conv_err,(External data field cannot be converted.)  000024 segdef conversion_error  000024 a0 077777 000263 000261 aa 143 157 156 166 aci "conv_err",8  000262 aa 137 145 162 162 000263 aa 050 105 170 164 acc "External data field cannot be converted."  000264 aa 145 162 156 141 000265 aa 154 040 144 141 000266 aa 164 141 040 146 000267 aa 151 145 154 144 000270 aa 040 143 141 156 000271 aa 156 157 164 040 000272 aa 142 145 040 143 000273 aa 157 156 166 145 000274 aa 162 164 145 144 000275 aa 056 000 000 000  72 ec dnumeric_file,dnumeric,(Double word binary files are limited to double precision data.) 000025 segdef dnumeric_file  000025 a0 077777 000300 000276 aa 144 156 165 155 aci "dnumeric",8  000277 aa 145 162 151 143 000300 aa 076 104 157 165 acc "Double word binary files are limited to double precision data."  000301 aa 142 154 145 040 000302 aa 167 157 162 144 000303 aa 040 142 151 156 000304 aa 141 162 171 040 000305 aa 146 151 154 145 000306 aa 163 040 141 162 000307 aa 145 040 154 151 000310 aa 155 151 164 145 000311 aa 144 040 164 157 000312 aa 040 144 157 165 000313 aa 142 154 145 040 000314 aa 160 162 145 143 000315 aa 151 163 151 157 000316 aa 156 040 144 141 000317 aa 164 141 056 000  73 ec filename_field_error,flnmferr,(Error in the filename field.)  000026 segdef filename_field_error  000026 a0 077777 000322 000320 aa 146 154 156 155 aci "flnmferr",8  000321 aa 146 145 162 162 000322 aa 034 105 162 162 acc "Error in the filename field."  000323 aa 157 162 040 151 000324 aa 156 040 164 150 000325 aa 145 040 146 151 000326 aa 154 145 156 141 000327 aa 155 145 040 146 000330 aa 151 145 154 144 000331 aa 056 000 000 000  74 ec fio_sys_error,fioerror,(FORTRAN I/O Error. Contact FORTRAN maintenance personnel.)  000027 segdef fio_sys_error  000027 a0 077777 000334 000332 aa 146 151 157 145 aci "fioerror",8  000333 aa 162 162 157 162 000334 aa 071 106 117 122 acc "FORTRAN I/O Error. Contact FORTRAN maintenance personnel."  000335 aa 124 122 101 116 000336 aa 040 111 057 117 000337 aa 040 105 162 162 000340 aa 157 162 056 040 000341 aa 103 157 156 164 000342 aa 141 143 164 040 000343 aa 106 117 122 124 000344 aa 122 101 116 040 000345 aa 155 141 151 156 000346 aa 164 145 156 141 000347 aa 156 143 145 040 000350 aa 160 145 162 163 000351 aa 157 156 156 145 000352 aa 154 056 000 000  75 ec form_field_error,formferr,(Error in the form field.)  000030 segdef form_field_error  000030 a0 077777 000355 000353 aa 146 157 162 155 aci "formferr",8  000354 aa 146 145 162 162 000355 aa 030 105 162 162 acc "Error in the form field."  000356 aa 157 162 040 151 000357 aa 156 040 164 150 000360 aa 145 040 146 157 000361 aa 162 155 040 146 000362 aa 151 145 154 144 000363 aa 056 000 000 000  76 ec format_error,fmt_err,(Error in format specification.)  000031 segdef format_error  000031 a0 077777 000366 000364 aa 146 155 164 137 aci "fmt_err",8  000365 aa 145 162 162 040 000366 aa 036 105 162 162 acc "Error in format specification."  000367 aa 157 162 040 151 000370 aa 156 040 146 157 000371 aa 162 155 141 164 000372 aa 040 163 160 145 000373 aa 143 151 146 151 000374 aa 143 141 164 151 000375 aa 157 156 056 000  77 ec format_is_infinite,infi_fmt,(Infinite loop in format. There is a list item but the format has no field descriptors.)  000032 segdef format_is_infinite 000032 a0 077777 000400 000376 aa 151 156 146 151 aci "infi_fmt",8  000377 aa 137 146 155 164 000400 aa 126 111 156 146 acc "Infinite loop in format. There is a list item but the format has no field descriptors."  000401 aa 151 156 151 164 000402 aa 145 040 154 157 000403 aa 157 160 040 151 000404 aa 156 040 146 157 000405 aa 162 155 141 164 000406 aa 056 040 124 150 000407 aa 145 162 145 040 000410 aa 151 163 040 141 000411 aa 040 154 151 163 000412 aa 164 040 151 164 000413 aa 145 155 040 142 000414 aa 165 164 040 164 000415 aa 150 145 040 146 000416 aa 157 162 155 141 000417 aa 164 040 150 141 000420 aa 163 040 156 157 000421 aa 040 146 151 145 000422 aa 154 144 040 144 000423 aa 145 163 143 162 000424 aa 151 160 164 157 000425 aa 162 163 056 000  78 ec formatted_file,fmt_file,(Formatted files are limited to formatted records.) 000033 segdef formatted_file 000033 a0 077777 000430 000426 aa 146 155 164 137 aci "fmt_file",8  000427 aa 146 151 154 145 000430 aa 061 106 157 162 acc "Formatted files are limited to formatted records."  000431 aa 155 141 164 164 000432 aa 145 144 040 146 000433 aa 151 154 145 163 000434 aa 040 141 162 145 000435 aa 040 154 151 155 000436 aa 151 164 145 144 000437 aa 040 164 157 040 000440 aa 146 157 162 155 000441 aa 141 164 164 145 000442 aa 144 040 162 145 000443 aa 143 157 162 144 000444 aa 163 056 000 000  79 ec incompatible_opening,inc_open,(The file opening is not compatible with the existing file.)  000034 segdef incompatible_opening  000034 a0 077777 000447 000445 aa 151 156 143 137 aci "inc_open",8  000446 aa 157 160 145 156 000447 aa 072 124 150 145 acc "The file opening is not compatible with the existing file."  000450 aa 040 146 151 154 000451 aa 145 040 157 160 000452 aa 145 156 151 156 000453 aa 147 040 151 163 000454 aa 040 156 157 164 000455 aa 040 143 157 155 000456 aa 160 141 164 151 000457 aa 142 154 145 040 000460 aa 167 151 164 150 000461 aa 040 164 150 145 000462 aa 040 145 170 151 000463 aa 163 164 151 156 000464 aa 147 040 146 151 000465 aa 154 145 056 000  80 ec internal_file_oflow,int_oflo,(An attempt has been made to access a record beyond the end of an internal file.)  000035 segdef internal_file_oflow  000035 a0 077777 000470 000466 aa 151 156 164 137 aci "int_oflo",8  000467 aa 157 146 154 157 000470 aa 117 101 156 040 acc "An attempt has been made to access a record beyond the end of an internal file." 000471 aa 141 164 164 145 000472 aa 155 160 164 040 000473 aa 150 141 163 040 000474 aa 142 145 145 156 000475 aa 040 155 141 144 000476 aa 145 040 164 157 000477 aa 040 141 143 143 000500 aa 145 163 163 040 000501 aa 141 040 162 145 000502 aa 143 157 162 144 000503 aa 040 142 145 171 000504 aa 157 156 144 040 000505 aa 164 150 145 040 000506 aa 145 156 144 040 000507 aa 157 146 040 141 000510 aa 156 040 151 156 000511 aa 164 145 162 156 000512 aa 141 154 040 146 000513 aa 151 154 145 056  81 ec invalid_file0_attr,file0err,(Only prompt, defer, and carriage attributes are allowed for file 0.)  000036 segdef invalid_file0_attr 000036 a0 077777 000516 000514 aa 146 151 154 145 aci "file0err",8  000515 aa 060 145 162 162 000516 aa 103 117 156 154 acc "Only prompt, defer, and carriage attributes are allowed for file 0." 000517 aa 171 040 160 162 000520 aa 157 155 160 164 000521 aa 054 040 144 145 000522 aa 146 145 162 054 000523 aa 040 141 156 144 000524 aa 040 143 141 162 000525 aa 162 151 141 147 000526 aa 145 040 141 164 000527 aa 164 162 151 142 000530 aa 165 164 145 163 000531 aa 040 141 162 145 000532 aa 040 141 154 154 000533 aa 157 167 145 144 000534 aa 040 146 157 162 000535 aa 040 146 151 154 000536 aa 145 040 060 056  82 ec invalid_file0_type,file0err,(Only the print or terminal file type can be specified for file 0.) 000037 segdef invalid_file0_type 000037 a0 077777 000541 000537 aa 146 151 154 145 aci "file0err",8  000540 aa 060 145 162 162 000541 aa 101 117 156 154 acc "Only the print or terminal file type can be specified for file 0."  000542 aa 171 040 164 150 000543 aa 145 040 160 162 000544 aa 151 156 164 040 000545 aa 157 162 040 164 000546 aa 145 162 155 151 000547 aa 156 141 154 040 000550 aa 146 151 154 145 000551 aa 040 164 171 160 000552 aa 145 040 143 141 000553 aa 156 040 142 145 000554 aa 040 163 160 145 000555 aa 143 151 146 151 000556 aa 145 144 040 146 000557 aa 157 162 040 146 000560 aa 151 154 145 040 000561 aa 060 056 000 000  83 ec invalid_for_file0,file0err,(This operation is not allowed for file 0.)  000040 segdef invalid_for_file0  000040 a0 077777 000564 000562 aa 146 151 154 145 aci "file0err",8  000563 aa 060 145 162 162 000564 aa 051 124 150 151 acc "This operation is not allowed for file 0."  000565 aa 163 040 157 160 000566 aa 145 162 141 164 000567 aa 151 157 156 040 000570 aa 151 163 040 156 000571 aa 157 164 040 141 000572 aa 154 154 157 167 000573 aa 145 144 040 146 000574 aa 157 162 040 146 000575 aa 151 154 145 040 000576 aa 060 056 000 000  84 ec invalid_max_recl,bad_recl,(Invalid value for the maximum record length.)  000041 segdef invalid_max_recl  000041 a0 077777 000601 000577 aa 142 141 144 137 aci "bad_recl",8  000600 aa 162 145 143 154 000601 aa 054 111 156 166 acc "Invalid value for the maximum record length."  000602 aa 141 154 151 144 000603 aa 040 166 141 154 000604 aa 165 145 040 146 000605 aa 157 162 040 164 000606 aa 150 145 040 155 000607 aa 141 170 151 155 000610 aa 165 155 040 162 000611 aa 145 143 157 162 000612 aa 144 040 154 145 000613 aa 156 147 164 150 000614 aa 056 000 000 000  85 ec invalid_scale_factor,badscale,(The scale factor for Dw.d and Ew.d edit descriptors must be between -d and d+2.) 000042 segdef invalid_scale_factor  000042 a0 077777 000617 000615 aa 142 141 144 163 aci "badscale",8  000616 aa 143 141 154 145 000617 aa 117 124 150 145 acc "The scale factor for Dw.d and Ew.d edit descriptors must be between -d and d+2." 000620 aa 040 163 143 141 000621 aa 154 145 040 146 000622 aa 141 143 164 157 000623 aa 162 040 146 157 000624 aa 162 040 104 167 000625 aa 056 144 040 141 000626 aa 156 144 040 105 000627 aa 167 056 144 040 000630 aa 145 144 151 164 000631 aa 040 144 145 163 000632 aa 143 162 151 160 000633 aa 164 157 162 163 000634 aa 040 155 165 163 000635 aa 164 040 142 145 000636 aa 040 142 145 164 000637 aa 167 145 145 156 000640 aa 040 055 144 040 000641 aa 141 156 144 040 000642 aa 144 053 062 056  86 ec io_switch_field_error,ioswferr,(Error in the I/O switch field.) 000043 segdef io_switch_field_error  000043 a0 077777 000645 000643 aa 151 157 163 167 aci "ioswferr",8  000644 aa 146 145 162 162 000645 aa 036 105 162 162 acc "Error in the I/O switch field."  000646 aa 157 162 040 151 000647 aa 156 040 164 150 000650 aa 145 040 111 057 000651 aa 117 040 163 167 000652 aa 151 164 143 150 000653 aa 040 146 151 145 000654 aa 154 144 056 000  87 ec long_record,long_rec,(Maximum record length exceeded.)  000044 segdef long_record  000044 a0 077777 000657 000655 aa 154 157 156 147 aci "long_rec",8  000656 aa 137 162 145 143 000657 aa 037 115 141 170 acc "Maximum record length exceeded." 000660 aa 151 155 165 155 000661 aa 040 162 145 143 000662 aa 157 162 144 040 000663 aa 154 145 156 147 000664 aa 164 150 040 145 000665 aa 170 143 145 145 000666 aa 144 145 144 056  88 ec missing_header,no_nlhdr,(Namelist input must begin with a header.)  000045 segdef missing_header 000045 a0 077777 000671 000667 aa 156 157 137 156 aci "no_nlhdr",8  000670 aa 154 150 144 162 000671 aa 050 116 141 155 acc "Namelist input must begin with a header."  000672 aa 145 154 151 163 000673 aa 164 040 151 156 000674 aa 160 165 164 040 000675 aa 155 165 163 164 000676 aa 040 142 145 147 000677 aa 151 156 040 167 000700 aa 151 164 150 040 000701 aa 141 040 150 145 000702 aa 141 144 145 162 000703 aa 056 000 000 000  89 ec mode_field_error,modeferr,(Error in the mode field.)  000046 segdef mode_field_error  000046 a0 077777 000706 000704 aa 155 157 144 145 aci "modeferr",8  000705 aa 146 145 162 162 000706 aa 030 105 162 162 acc "Error in the mode field."  000707 aa 157 162 040 151 000710 aa 156 040 164 150 000711 aa 145 040 155 157 000712 aa 144 145 040 146 000713 aa 151 145 154 144 000714 aa 056 000 000 000  90 ec must_be_empty,notempty,(File must be empty in order to set maximum record length.)  000047 segdef must_be_empty  000047 a0 077777 000717 000715 aa 156 157 164 145 aci "notempty",8  000716 aa 155 160 164 171 000717 aa 071 106 151 154 acc "File must be empty in order to set maximum record length."  000720 aa 145 040 155 165 000721 aa 163 164 040 142 000722 aa 145 040 145 155 000723 aa 160 164 171 040 000724 aa 151 156 040 157 000725 aa 162 144 145 162 000726 aa 040 164 157 040 000727 aa 163 145 164 040 000730 aa 155 141 170 151 000731 aa 155 165 155 040 000732 aa 162 145 143 157 000733 aa 162 144 040 154 000734 aa 145 156 147 164 000735 aa 150 056 000 000  91 ec namelist_error,nl_error,(Error in namelist I/O.)  000050 segdef namelist_error 000050 a0 077777 000740 000736 aa 156 154 137 145 aci "nl_error",8  000737 aa 162 162 157 162 000740 aa 026 105 162 162 acc "Error in namelist I/O."  000741 aa 157 162 040 151 000742 aa 156 040 156 141 000743 aa 155 145 154 151 000744 aa 163 164 040 111 000745 aa 057 117 056 000  92 "  93 " Operation requires file to be blocked file.  94 "  95 ec not_blocked,not_blk,  96 (This file is not a blocked file.) 000051 segdef not_blocked  000051 a0 077777 000750 000746 aa 156 157 164 137 aci "not_blk",8  000747 aa 142 154 153 040 000750 aa 040 124 150 151 acc "This file is not a blocked file."  000751 aa 163 040 146 151 000752 aa 154 145 040 151 000753 aa 163 040 156 157 000754 aa 164 040 141 040 000755 aa 142 154 157 143 000756 aa 153 145 144 040 000757 aa 146 151 154 145 000760 aa 056 000 000 000  97 ec not_direct,not_dir,(This file opening does not permit direct access I/O.)  000052 segdef not_direct 000052 a0 077777 000763 000761 aa 156 157 164 137 aci "not_dir",8  000762 aa 144 151 162 040 000763 aa 064 124 150 151 acc "This file opening does not permit direct access I/O."  000764 aa 163 040 146 151 000765 aa 154 145 040 157 000766 aa 160 145 156 151 000767 aa 156 147 040 144 000770 aa 157 145 163 040 000771 aa 156 157 164 040 000772 aa 160 145 162 155 000773 aa 151 164 040 144 000774 aa 151 162 145 143 000775 aa 164 040 141 143 000776 aa 143 145 163 163 000777 aa 040 111 057 117 001000 aa 056 000 000 000  98 ec not_open,not_open,(File must be open before being used.)  000053 segdef not_open  000053 a0 077777 001003 001001 aa 156 157 164 137 aci "not_open",8  001002 aa 157 160 145 156 001003 aa 044 106 151 154 acc "File must be open before being used."  001004 aa 145 040 155 165 001005 aa 163 164 040 142 001006 aa 145 040 157 160 001007 aa 145 156 040 142 001010 aa 145 146 157 162 001011 aa 145 040 142 145 001012 aa 151 156 147 040 001013 aa 165 163 145 144 001014 aa 056 000 000 000  99 ec not_scratch_file,notscrch,(This file was not opened and attached by FORTRAN I/O.)  000054 segdef not_scratch_file  000054 a0 077777 001017 001015 aa 156 157 164 163 aci "notscrch",8  001016 aa 143 162 143 150 001017 aa 065 124 150 151 acc "This file was not opened and attached by FORTRAN I/O."  001020 aa 163 040 146 151 001021 aa 154 145 040 167 001022 aa 141 163 040 156 001023 aa 157 164 040 157 001024 aa 160 145 156 145 001025 aa 144 040 141 156 001026 aa 144 040 141 164 001027 aa 164 141 143 150 001030 aa 145 144 040 142 001031 aa 171 040 106 117 001032 aa 122 124 122 101 001033 aa 116 040 111 057 001034 aa 117 056 000 000  100 ec not_sequential,not_seq,(This file opening does not permit sequential access I/O.)  000055 segdef not_sequential 000055 a0 077777 001037 001035 aa 156 157 164 137 aci "not_seq",8  001036 aa 163 145 161 040 001037 aa 070 124 150 151 acc "This file opening does not permit sequential access I/O."  001040 aa 163 040 146 151 001041 aa 154 145 040 157 001042 aa 160 145 156 151 001043 aa 156 147 040 144 001044 aa 157 145 163 040 001045 aa 156 157 164 040 001046 aa 160 145 162 155 001047 aa 151 164 040 163 001050 aa 145 161 165 145 001051 aa 156 164 151 141 001052 aa 154 040 141 143 001053 aa 143 145 163 163 001054 aa 040 111 057 117 001055 aa 056 000 000 000  101 ec open_attr_conflict,openconf,(These two open attributes are mutually exclusive.) 000056 segdef open_attr_conflict 000056 a0 077777 001060 001056 aa 157 160 145 156 aci "openconf",8  001057 aa 143 157 156 146 001060 aa 061 124 150 145 acc "These two open attributes are mutually exclusive."  001061 aa 163 145 040 164 001062 aa 167 157 040 157 001063 aa 160 145 156 040 001064 aa 141 164 164 162 001065 aa 151 142 165 164 001066 aa 145 163 040 141 001067 aa 162 145 040 155 001070 aa 165 164 165 141 001071 aa 154 154 171 040 001072 aa 145 170 143 154 001073 aa 165 163 151 166 001074 aa 145 056 000 000  102 ec open_attr_incomplete,openinc,(The open attributes are incomplete.)  000057 segdef open_attr_incomplete  000057 a0 077777 001077 001075 aa 157 160 145 156 aci "openinc",8  001076 aa 151 156 143 040 001077 aa 043 124 150 145 acc "The open attributes are incomplete." 001100 aa 040 157 160 145 001101 aa 156 040 141 164 001102 aa 164 162 151 142 001103 aa 165 164 145 163 001104 aa 040 141 162 145 001105 aa 040 151 156 143 001106 aa 157 155 160 154 001107 aa 145 164 145 056  103 ec parens_too_deep,manyparn,(Maximum format parenthesis level exceeded.)  000060 segdef parens_too_deep  000060 a0 077777 001112 001110 aa 155 141 156 171 aci "manyparn",8  001111 aa 160 141 162 156 001112 aa 052 115 141 170 acc "Maximum format parenthesis level exceeded."  001113 aa 151 155 165 155 001114 aa 040 146 157 162 001115 aa 155 141 164 040 001116 aa 160 141 162 145 001117 aa 156 164 150 145 001120 aa 163 151 163 040 001121 aa 154 145 166 145 001122 aa 154 040 145 170 001123 aa 143 145 145 144 001124 aa 145 144 056 000  104 ec read_after_eof,eofread,(Attempt to read past EOF record.)  000061 segdef read_after_eof 000061 a0 077777 001127 001125 aa 145 157 146 162 aci "eofread",8  001126 aa 145 141 144 040 001127 aa 040 101 164 164 acc "Attempt to read past EOF record."  001130 aa 145 155 160 164 001131 aa 040 164 157 040 001132 aa 162 145 141 144 001133 aa 040 160 141 163 001134 aa 164 040 105 117 001135 aa 106 040 162 145 001136 aa 143 157 162 144 001137 aa 056 000 000 000  105 ec short_record,shortrec,(Attempt to read more data than the record contains.) 000062 segdef short_record  000062 a0 077777 001142 001140 aa 163 150 157 162 aci "shortrec",8  001141 aa 164 162 145 143 001142 aa 063 101 164 164 acc "Attempt to read more data than the record contains." 001143 aa 145 155 160 164 001144 aa 040 164 157 040 001145 aa 162 145 141 144 001146 aa 040 155 157 162 001147 aa 145 040 144 141 001150 aa 164 141 040 164 001151 aa 150 141 156 040 001152 aa 164 150 145 040 001153 aa 162 145 143 157 001154 aa 162 144 040 143 001155 aa 157 156 164 141 001156 aa 151 156 163 056  106 ec status_field_error,staferr,(Error in status field.) 000063 segdef status_field_error 000063 a0 077777 001161 001157 aa 163 164 141 146 aci "staferr",8  001160 aa 145 162 162 040 001161 aa 026 105 162 162 acc "Error in status field."  001162 aa 157 162 040 151 001163 aa 156 040 163 164 001164 aa 141 164 165 163 001165 aa 040 146 151 145 001166 aa 154 144 056 000  107 ec syntax_error,syntxerr,(Syntax error in the external data field.)  000064 segdef syntax_error  000064 a0 077777 001171 001167 aa 163 171 156 164 aci "syntxerr",8  001170 aa 170 145 162 162 001171 aa 050 123 171 156 acc "Syntax error in the external data field."  001172 aa 164 141 170 040 001173 aa 145 162 162 157 001174 aa 162 040 151 156 001175 aa 040 164 150 145 001176 aa 040 145 170 164 001177 aa 145 162 156 141 001200 aa 154 040 144 141 001201 aa 164 141 040 146 001202 aa 151 145 154 144 001203 aa 056 000 000 000  108 ec unformatted_file,unf_file,(Unformatted files are limited to unformatted records.)  000065 segdef unformatted_file  000065 a0 077777 001206 001204 aa 165 156 146 137 aci "unf_file",8  001205 aa 146 151 154 145 001206 aa 065 125 156 146 acc "Unformatted files are limited to unformatted records."  001207 aa 157 162 155 141 001210 aa 164 164 145 144 001211 aa 040 146 151 154 001212 aa 145 163 040 141 001213 aa 162 145 040 154 001214 aa 151 155 151 164 001215 aa 145 144 040 164 001216 aa 157 040 165 156 001217 aa 146 157 162 155 001220 aa 141 164 164 145 001221 aa 144 040 162 145 001222 aa 143 157 162 144 001223 aa 163 056 000 000  109 "  110 " Probably an error with vfile_status_. 111 "  112 ec unknown_filetype,unknfile,  113 (The file type of the external file is not recognized.)  000066 segdef unknown_filetype  000066 a0 077777 001226 001224 aa 165 156 153 156 aci "unknfile",8  001225 aa 146 151 154 145 001226 aa 065 124 150 145 acc "The file type of the external file is not recognized."  001227 aa 040 146 151 154 001230 aa 145 040 164 171 001231 aa 160 145 040 157 001232 aa 146 040 164 150 001233 aa 145 040 145 170 001234 aa 164 145 162 156 001235 aa 141 154 040 146 001236 aa 151 154 145 040 001237 aa 151 163 040 156 001240 aa 157 164 040 162 001241 aa 145 143 157 147 001242 aa 156 151 172 145 001243 aa 144 056 000 000  114 ec write_after_eof,eofwrite,(Attempt to write past EOF record.)  000067 segdef write_after_eof  000067 a0 077777 001246 001244 aa 145 157 146 167 aci "eofwrite",8  001245 aa 162 151 164 145 001246 aa 041 101 164 164 acc "Attempt to write past EOF record."  001247 aa 145 155 160 164 001250 aa 040 164 157 040 001251 aa 167 162 151 164 001252 aa 145 040 160 141 001253 aa 163 164 040 105 001254 aa 117 106 040 162 001255 aa 145 143 157 162 001256 aa 144 056 000 000  115 "  116 " I/O switch is not opened by FORTRAN I/O, however, it is necessary to reopen the I/O switch  117 " in order to satisfy the mode attribute specified by the user. 118 "  119 ec wrong_mode,bad_mode,  120 (The I/O switch was not opened by FORTRAN and it does not support the requested mode.) 000070 segdef wrong_mode 000070 a0 077777 001261 001257 aa 142 141 144 137 aci "bad_mode",8  001260 aa 155 157 144 145 001261 aa 124 124 150 145 acc "The I/O switch was not opened by FORTRAN and it does not support the requested mode."  001262 aa 040 111 057 117 001263 aa 040 163 167 151 001264 aa 164 143 150 040 001265 aa 167 141 163 040 001266 aa 156 157 164 040 001267 aa 157 160 145 156 001270 aa 145 144 040 142 001271 aa 171 040 106 117 001272 aa 122 124 122 101 001273 aa 116 040 141 156 001274 aa 144 040 151 164 001275 aa 040 144 157 145 001276 aa 163 040 156 157 001277 aa 164 040 163 165 001300 aa 160 160 157 162 001301 aa 164 040 164 150 001302 aa 145 040 162 145 001303 aa 161 165 145 163 001304 aa 164 145 144 040 001305 aa 155 157 144 145 001306 aa 056 000 000 000  121  122  123 end  NO LITERALS  NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 001310 5a 000003 000000 001311 5a 000600 600000 001312 aa 000000 000000 001313 55 000013 000002 001314 5a 000002 400003 001315 55 000006 000013 001316 aa 021 146 157 162 001317 aa 164 162 141 156 001320 aa 137 151 157 137 001321 aa 145 162 162 157 001322 aa 162 137 000 000 001323 55 000021 000003 001324 2a 000070 400001 001325 55 000016 000003 001326 aa 012 167 162 157 wrong_mode  001327 aa 156 147 137 155 001330 aa 157 144 145 000 001331 55 000030 000013 001332 2a 000067 400001 001333 55 000024 000003 001334 aa 017 167 162 151 write_after_eof 001335 aa 164 145 137 141 001336 aa 146 164 145 162 001337 aa 137 145 157 146 001340 55 000040 000021 001341 2a 000066 400001 001342 55 000033 000003 001343 aa 020 165 156 153 unknown_filetype  001344 aa 156 157 167 156 001345 aa 137 146 151 154 001346 aa 145 164 171 160 001347 aa 145 000 000 000 001350 55 000050 000030 001351 2a 000065 400001 001352 55 000043 000003 001353 aa 020 165 156 146 unformatted_file  001354 aa 157 162 155 141 001355 aa 164 164 145 144 001356 aa 137 146 151 154 001357 aa 145 000 000 000 001360 55 000057 000040 001361 2a 000064 400001 001362 55 000053 000003 001363 aa 014 163 171 156 syntax_error  001364 aa 164 141 170 137 001365 aa 145 162 162 157 001366 aa 162 000 000 000 001367 55 000067 000050 001370 2a 000063 400001 001371 55 000062 000003 001372 aa 022 163 164 141 status_field_error  001373 aa 164 165 163 137 001374 aa 146 151 145 154 001375 aa 144 137 145 162 001376 aa 162 157 162 000 001377 55 000076 000057 001400 2a 000062 400001 001401 55 000072 000003 001402 aa 014 163 150 157 short_record  001403 aa 162 164 137 162 001404 aa 145 143 157 162 001405 aa 144 000 000 000 001406 55 000105 000067 001407 2a 000061 400001 001410 55 000101 000003 001411 aa 016 162 145 141 read_after_eof  001412 aa 144 137 141 146 001413 aa 164 145 162 137 001414 aa 145 157 146 000 001415 55 000114 000076 001416 2a 000060 400001 001417 55 000110 000003 001420 aa 017 160 141 162 parens_too_deep 001421 aa 145 156 163 137 001422 aa 164 157 157 137 001423 aa 144 145 145 160 001424 55 000125 000105 001425 2a 000057 400001 001426 55 000117 000003 001427 aa 024 157 160 145 open_attr_incomplete  001430 aa 156 137 141 164 001431 aa 164 162 137 151 001432 aa 156 143 157 155 001433 aa 160 154 145 164 001434 aa 145 000 000 000 001435 55 000135 000114 001436 2a 000056 400001 001437 55 000130 000003 001440 aa 022 157 160 145 open_attr_conflict  001441 aa 156 137 141 164 001442 aa 164 162 137 143 001443 aa 157 156 146 154 001444 aa 151 143 164 000 001445 55 000144 000125 001446 2a 000055 400001 001447 55 000140 000003 001450 aa 016 156 157 164 not_sequential  001451 aa 137 163 145 161 001452 aa 165 145 156 164 001453 aa 151 141 154 000 001454 55 000154 000135 001455 2a 000054 400001 001456 55 000147 000003 001457 aa 020 156 157 164 not_scratch_file  001460 aa 137 163 143 162 001461 aa 141 164 143 150 001462 aa 137 146 151 154 001463 aa 145 000 000 000 001464 55 000162 000144 001465 2a 000053 400001 001466 55 000157 000003 001467 aa 010 156 157 164 not_open  001470 aa 137 157 160 145 001471 aa 156 000 000 000 001472 55 000170 000154 001473 2a 000052 400001 001474 55 000165 000003 001475 aa 012 156 157 164 not_direct  001476 aa 137 144 151 162 001477 aa 145 143 164 000 001500 55 000176 000162 001501 2a 000051 400001 001502 55 000173 000003 001503 aa 013 156 157 164 not_blocked 001504 aa 137 142 154 157 001505 aa 143 153 145 144 001506 55 000205 000170 001507 2a 000050 400001 001510 55 000201 000003 001511 aa 016 156 141 155 namelist_error  001512 aa 145 154 151 163 001513 aa 164 137 145 162 001514 aa 162 157 162 000 001515 55 000214 000176 001516 2a 000047 400001 001517 55 000210 000003 001520 aa 015 155 165 163 must_be_empty  001521 aa 164 137 142 145 001522 aa 137 145 155 160 001523 aa 164 171 000 000 001524 55 000224 000205 001525 2a 000046 400001 001526 55 000217 000003 001527 aa 020 155 157 144 mode_field_error  001530 aa 145 137 146 151 001531 aa 145 154 144 137 001532 aa 145 162 162 157 001533 aa 162 000 000 000 001534 55 000233 000214 001535 2a 000045 400001 001536 55 000227 000003 001537 aa 016 155 151 163 missing_header  001540 aa 163 151 156 147 001541 aa 137 150 145 141 001542 aa 144 145 162 000 001543 55 000241 000224 001544 2a 000044 400001 001545 55 000236 000003 001546 aa 013 154 157 156 long_record 001547 aa 147 137 162 145 001550 aa 143 157 162 144 001551 55 000252 000233 001552 2a 000043 400001 001553 55 000244 000003 001554 aa 025 151 157 137 io_switch_field_error  001555 aa 163 167 151 164 001556 aa 143 150 137 146 001557 aa 151 145 154 144 001560 aa 137 145 162 162 001561 aa 157 162 000 000 001562 55 000263 000241 001563 2a 000042 400001 001564 55 000255 000003 001565 aa 024 151 156 166 invalid_scale_factor  001566 aa 141 154 151 144 001567 aa 137 163 143 141 001570 aa 154 145 137 146 001571 aa 141 143 164 157 001572 aa 162 000 000 000 001573 55 000273 000252 001574 2a 000041 400001 001575 55 000266 000003 001576 aa 020 151 156 166 invalid_max_recl  001577 aa 141 154 151 144 001600 aa 137 155 141 170 001601 aa 137 162 145 143 001602 aa 154 000 000 000 001603 55 000303 000263 001604 2a 000040 400001 001605 55 000276 000003 001606 aa 021 151 156 166 invalid_for_file0  001607 aa 141 154 151 144 001610 aa 137 146 157 162 001611 aa 137 146 151 154 001612 aa 145 060 000 000 001613 55 000313 000273 001614 2a 000037 400001 001615 55 000306 000003 001616 aa 022 151 156 166 invalid_file0_type  001617 aa 141 154 151 144 001620 aa 137 146 151 154 001621 aa 145 060 137 164 001622 aa 171 160 145 000 001623 55 000323 000303 001624 2a 000036 400001 001625 55 000316 000003 001626 aa 022 151 156 166 invalid_file0_attr  001627 aa 141 154 151 144 001630 aa 137 146 151 154 001631 aa 145 060 137 141 001632 aa 164 164 162 000 001633 55 000333 000313 001634 2a 000035 400001 001635 55 000326 000003 001636 aa 023 151 156 164 internal_file_oflow 001637 aa 145 162 156 141 001640 aa 154 137 146 151 001641 aa 154 145 137 157 001642 aa 146 154 157 167 001643 55 000344 000323 001644 2a 000034 400001 001645 55 000336 000003 001646 aa 024 151 156 143 incompatible_opening  001647 aa 157 155 160 141 001650 aa 164 151 142 154 001651 aa 145 137 157 160 001652 aa 145 156 151 156 001653 aa 147 000 000 000 001654 55 000353 000333 001655 2a 000033 400001 001656 55 000347 000003 001657 aa 016 146 157 162 formatted_file  001660 aa 155 141 164 164 001661 aa 145 144 137 146 001662 aa 151 154 145 000 001663 55 000363 000344 001664 2a 000032 400001 001665 55 000356 000003 001666 aa 022 146 157 162 format_is_infinite  001667 aa 155 141 164 137 001670 aa 151 163 137 151 001671 aa 156 146 151 156 001672 aa 151 164 145 000 001673 55 000372 000353 001674 2a 000031 400001 001675 55 000366 000003 001676 aa 014 146 157 162 format_error  001677 aa 155 141 164 137 001700 aa 145 162 162 157 001701 aa 162 000 000 000 001702 55 000402 000363 001703 2a 000030 400001 001704 55 000375 000003 001705 aa 020 146 157 162 form_field_error  001706 aa 155 137 146 151 001707 aa 145 154 144 137 001710 aa 145 162 162 157 001711 aa 162 000 000 000 001712 55 000411 000372 001713 2a 000027 400001 001714 55 000405 000003 001715 aa 015 146 151 157 fio_sys_error  001716 aa 137 163 171 163 001717 aa 137 145 162 162 001720 aa 157 162 000 000 001721 55 000422 000402 001722 2a 000026 400001 001723 55 000414 000003 001724 aa 024 146 151 154 filename_field_error  001725 aa 145 156 141 155 001726 aa 145 137 146 151 001727 aa 145 154 144 137 001730 aa 145 162 162 157 001731 aa 162 000 000 000 001732 55 000431 000411 001733 2a 000025 400001 001734 55 000425 000003 001735 aa 015 144 156 165 dnumeric_file  001736 aa 155 145 162 151 001737 aa 143 137 146 151 001740 aa 154 145 000 000 001741 55 000441 000422 001742 2a 000024 400001 001743 55 000434 000003 001744 aa 020 143 157 156 conversion_error  001745 aa 166 145 162 163 001746 aa 151 157 156 137 001747 aa 145 162 162 157 001750 aa 162 000 000 000 001751 55 000451 000431 001752 2a 000023 400001 001753 55 000444 000003 001754 aa 020 143 154 157 close_attr_error  001755 aa 163 145 137 141 001756 aa 164 164 162 137 001757 aa 145 162 162 157 001760 aa 162 000 000 000 001761 55 000460 000441 001762 2a 000022 400001 001763 55 000454 000003 001764 aa 014 143 141 156 cannot_write  001765 aa 156 157 164 137 001766 aa 167 162 151 164 001767 aa 145 000 000 000 001770 55 000467 000451 001771 2a 000021 400001 001772 55 000463 000003 001773 aa 017 143 141 156 cannot_truncate 001774 aa 156 157 164 137 001775 aa 164 162 165 156 001776 aa 143 141 164 145 001777 55 000476 000460 002000 2a 000020 400001 002001 55 000472 000003 002002 aa 015 143 141 156 cannot_reopen  002003 aa 156 157 164 137 002004 aa 162 145 157 160 002005 aa 145 156 000 000 002006 55 000504 000467 002007 2a 000017 400001 002010 55 000501 000003 002011 aa 013 143 141 156 cannot_read 002012 aa 156 157 164 137 002013 aa 162 145 141 144 002014 55 000513 000476 002015 2a 000016 400001 002016 55 000507 000003 002017 aa 017 143 141 156 cannot_position 002020 aa 156 157 164 137 002021 aa 160 157 163 151 002022 aa 164 151 157 156 002023 55 000523 000504 002024 2a 000015 400001 002025 55 000516 000003 002026 aa 021 142 154 141 blank_field_error  002027 aa 156 153 137 146 002030 aa 151 145 154 144 002031 aa 137 145 162 162 002032 aa 157 162 000 000 002033 55 000531 000513 002034 2a 000014 400001 002035 55 000526 000003 002036 aa 010 142 141 144 bad_char  002037 aa 137 143 150 141 002040 aa 162 000 000 000 002041 55 000542 000523 002042 2a 000013 400001 002043 55 000534 000003 002044 aa 027 141 164 164 attach_desc_field_error 002045 aa 141 143 150 137 002046 aa 144 145 163 143 002047 aa 137 146 151 145 002050 aa 154 144 137 145 002051 aa 162 162 157 162 002052 55 000551 000531 002053 2a 000012 400001 002054 55 000545 000003 002055 aa 016 141 154 162 already_opened  002056 aa 145 141 144 171 002057 aa 137 157 160 145 002060 aa 156 145 144 000 002061 55 000561 000542 002062 2a 000011 400001 002063 55 000554 000003 002064 aa 021 141 154 162 already_connected  002065 aa 145 141 144 171 002066 aa 137 143 157 156 002067 aa 156 145 143 164 002070 aa 145 144 000 000 002071 55 000571 000551 002072 2a 000010 400001 002073 55 000564 000003 002074 aa 022 141 143 143 access_field_error  002075 aa 145 163 163 137 002076 aa 146 151 145 154 002077 aa 144 137 145 162 002100 aa 162 157 162 000 002101 55 000002 000561 002102 6a 000000 400002 002103 55 000574 000003 002104 aa 014 163 171 155 symbol_table  002105 aa 142 157 154 137 002106 aa 164 141 142 154 002107 aa 145 000 000 000 DEFINITIONS HASH TABLE  002110 aa 000000 000131 002111 aa 000000 000000 002112 5a 000353 000000 002113 5a 000170 000000 002114 5a 000030 000000 002115 5a 000050 000000 002116 5a 000460 000000 002117 5a 000504 000000 002120 5a 000233 000000 002121 5a 000571 000000 002122 5a 000135 000000 002123 5a 000076 000000 002124 5a 000333 000000 002125 5a 000224 000000 002126 5a 000411 000000 002127 5a 000542 000000 002130 aa 000000 000000 002131 aa 000000 000000 002132 5a 000241 000000 002133 5a 000214 000000 002134 5a 000551 000000 002135 aa 000000 000000 002136 aa 000000 000000 002137 5a 000067 000000 002140 5a 000273 000000 002141 aa 000000 000000 002142 5a 000057 000000 002143 5a 000114 000000 002144 5a 000372 000000 002145 5a 000467 000000 002146 aa 000000 000000 002147 5a 000252 000000 002150 aa 000000 000000 002151 aa 000000 000000 002152 aa 000000 000000 002153 aa 000000 000000 002154 aa 000000 000000 002155 5a 000531 000000 002156 aa 000000 000000 002157 aa 000000 000000 002160 aa 000000 000000 002161 5a 000513 000000 002162 aa 000000 000000 002163 aa 000000 000000 002164 5a 000176 000000 002165 aa 000000 000000 002166 aa 000000 000000 002167 aa 000000 000000 002170 aa 000000 000000 002171 5a 000021 000000 002172 aa 000000 000000 002173 5a 000125 000000 002174 5a 000344 000000 002175 aa 000000 000000 002176 5a 000476 000000 002177 aa 000000 000000 002200 5a 000303 000000 002201 5a 000313 000000 002202 5a 000422 000000 002203 5a 000561 000000 002204 5a 000162 000000 002205 5a 000402 000000 002206 5a 000441 000000 002207 aa 000000 000000 002210 aa 000000 000000 002211 aa 000000 000000 002212 aa 000000 000000 002213 aa 000000 000000 002214 aa 000000 000000 002215 aa 000000 000000 002216 5a 000105 000000 002217 aa 000000 000000 002220 aa 000000 000000 002221 5a 000013 000000 002222 5a 000144 000000 002223 5a 000205 000000 002224 aa 000000 000000 002225 5a 000363 000000 002226 aa 000000 000000 002227 aa 000000 000000 002230 aa 000000 000000 002231 5a 000263 000000 002232 aa 000000 000000 002233 aa 000000 000000 002234 5a 000431 000000 002235 5a 000154 000000 002236 5a 000323 000000 002237 5a 000451 000000 002240 5a 000040 000000 002241 5a 000523 000000 NO EXTERNAL NAMES  NO TRAP POINTER WORDS  TYPE PAIR BLOCKS  002242 aa 000001 000000 002243 aa 000000 000000 INTERNAL EXPRESSION WORDS 002244 50 000732 000000 002245 aa 000000 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 02 001310 000074 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000072 000077 000007 a2 000000 000062 000072 9a 777706 0000 46 *text|  000073 5a 000734 0000 00 FIRST REFERENCE TRAP LIST  000074 aa 000000 000001 000075 aa 000000 000001 000076 2a 000072 000000 000077 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 674550 754773 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 000244 000020 aa 000000 000146 000021 aa 000000 000220 000022 aa 000234 000146 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 000066 000067 aa 147740 446263 000070 aa 000000 114774 000071 aa 461054 600000 000072 aa 000120 000037 000073 aa 120665 316464 000074 aa 000000 112067 000075 aa 253504 600000 000076 aa 000130 000066 000077 aa 147714 750316 000100 aa 000000 114774 000101 aa 453561 000000 000102 aa 076163 160145 >special_ldd>install>MR12.0-1206>fortran_io_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 060055 000111 aa 061062 060066 000112 aa 076146 157162 000113 aa 164162 141156 000114 aa 137151 157137 000115 aa 145162 162157 000116 aa 162137 056141 000117 aa 154155 040040 000120 aa 076154 144144 >ldd>include>et_macros.incl.alm 000121 aa 076151 156143 000122 aa 154165 144145 000123 aa 076145 164137 000124 aa 155141 143162 000125 aa 157163 056151 000126 aa 156143 154056 000127 aa 141154 155040 000130 aa 076163 160145 >special_ldd>install>MR12.0-1206>stack_header.incl.alm  000131 aa 143151 141154 000132 aa 137154 144144 000133 aa 076151 156163 000134 aa 164141 154154 000135 aa 076115 122061 000136 aa 062056 060055 000137 aa 061062 060066 000140 aa 076163 164141 000141 aa 143153 137150 000142 aa 145141 144145 000143 aa 162056 151156 000144 aa 143154 056141 000145 aa 154155 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number  *text fortran_io_error_: 24.  14 .._00000 fortran_io_error_: 31.  24 .._00001 fortran_io_error_: 37.  51 .._00002 fortran_io_error_: 43.  75 .._00003 fortran_io_error_: 48.  111 .._00004 fortran_io_error_: 49.  131 .._00005 fortran_io_error_: 53.  142 .._00006 fortran_io_error_: 56.  157 .._00007 fortran_io_error_: 61.  170 .._00010 fortran_io_error_: 67.  207 .._00011 fortran_io_error_: 68.  226 .._00012 fortran_io_error_: 69.  246 .._00013 fortran_io_error_: 70.  263 .._00014 fortran_io_error_: 71.  300 .._00015 fortran_io_error_: 72.  322 .._00016 fortran_io_error_: 73.  334 .._00017 fortran_io_error_: 74.  355 .._00020 fortran_io_error_: 75.  366 .._00021 fortran_io_error_: 76.  400 .._00022 fortran_io_error_: 77.  430 .._00023 fortran_io_error_: 78.  447 .._00024 fortran_io_error_: 79.  470 .._00025 fortran_io_error_: 80.  516 .._00026 fortran_io_error_: 81.  541 .._00027 fortran_io_error_: 82.  564 .._00030 fortran_io_error_: 83.  601 .._00031 fortran_io_error_: 84.  617 .._00032 fortran_io_error_: 85.  645 .._00033 fortran_io_error_: 86.  657 .._00034 fortran_io_error_: 87.  671 .._00035 fortran_io_error_: 88.  706 .._00036 fortran_io_error_: 89.  717 .._00037 fortran_io_error_: 90.  740 .._00040 fortran_io_error_: 91.  750 .._00041 fortran_io_error_: 96.  763 .._00042 fortran_io_error_: 97.  1003 .._00043 fortran_io_error_: 98.  1017 .._00044 fortran_io_error_: 99.  1037 .._00045 fortran_io_error_: 100.  1060 .._00046 fortran_io_error_: 101.  1077 .._00047 fortran_io_error_: 102.  1112 .._00050 fortran_io_error_: 103.  1127 .._00051 fortran_io_error_: 104.  1142 .._00052 fortran_io_error_: 105.  1161 .._00053 fortran_io_error_: 106.  1171 .._00054 fortran_io_error_: 107.  1206 .._00055 fortran_io_error_: 108.  1226 .._00056 fortran_io_error_: 113.  1246 .._00057 fortran_io_error_: 114.  1261 .._00060 fortran_io_error_: 120.  71 .code_end fortran_io_error_: 24.  10 .code_start fortran_io_error_: 24.  5 .loop fortran_io_error_: 24.  77777 .segno fortran_io_error_: 24, 31, 37, 43, 48, 49, 53, 56, 61, 67, 68,  69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,  80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,  91, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,  106, 107, 108, 113, 114, 120. 0 .trapproc fortran_io_error_: 24.  10 access_field_error fortran_io_error_: 31.  11 already_connected fortran_io_error_: 37.  12 already_opened fortran_io_error_: 43.  13 attach_desc_field_error fortran_io_error_: 48.  14 bad_char fortran_io_error_: 49.  15 blank_field_error fortran_io_error_: 53.  1170 call_offset stack_header: 80.  16 cannot_position fortran_io_error_: 56.  17 cannot_read fortran_io_error_: 61.  20 cannot_reopen fortran_io_error_: 67.  21 cannot_truncate fortran_io_error_: 68.  22 cannot_write fortran_io_error_: 69.  23 close_attr_error fortran_io_error_: 70.  10 codes fortran_io_error_: 24, 31, 37, 43, 48, 49, 53, 56, 61, 67, 68,  69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,  80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,  91, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,  106, 107, 108, 113, 114, 120. 24 conversion_error fortran_io_error_: 71.  25 dnumeric_file fortran_io_error_: 72.  1174 entry_offset stack_header: 84.  26 filename_field_error fortran_io_error_: 73.  27 fio_sys_error fortran_io_error_: 74.  33 formatted_file fortran_io_error_: 78.  31 format_error fortran_io_error_: 76.  32 format_is_infinite fortran_io_error_: 77.  30 form_field_error fortran_io_error_: 75.  34 incompatible_opening fortran_io_error_: 79.  35 internal_file_oflow fortran_io_error_: 80.  36 invalid_file0_attr fortran_io_error_: 81.  37 invalid_file0_type fortran_io_error_: 82.  40 invalid_for_file0 fortran_io_error_: 83.  41 invalid_max_recl fortran_io_error_: 84.  42 invalid_scale_factor fortran_io_error_: 85.  43 io_switch_field_error fortran_io_error_: 86.  44 long_record fortran_io_error_: 87.  0 messages fortran_io_error_: 24, 31, 37, 43, 48, 49, 53, 56, 61, 67, 68,  69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,  80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,  91, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105,  106, 107, 108, 113, 114, 120. 45 missing_header fortran_io_error_: 88.  46 mode_field_error fortran_io_error_: 89.  47 must_be_empty fortran_io_error_: 90.  50 namelist_error fortran_io_error_: 91.  51 not_blocked fortran_io_error_: 96.  52 not_direct fortran_io_error_: 97.  53 not_open fortran_io_error_: 98.  54 not_scratch_file fortran_io_error_: 99.  55 not_sequential fortran_io_error_: 100.  56 open_attr_conflict fortran_io_error_: 101.  57 open_attr_incomplete fortran_io_error_: 102.  60 parens_too_deep fortran_io_error_: 103.  71 past_codes fortran_io_error_: 24.  1171 push_offset stack_header: 81.  61 read_after_eof fortran_io_error_: 104.  1173 return_no_pop_offset stack_header: 83.  1172 return_offset stack_header: 82.  62 short_record fortran_io_error_: 105.  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 fortran_io_error_: 24,  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.  63 status_field_error fortran_io_error_: 106.  64 syntax_error fortran_io_error_: 107.  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. 65 unformatted_file fortran_io_error_: 108.  66 unknown_filetype fortran_io_error_: 113.  67 write_after_eof fortran_io_error_: 114.  70 wrong_mode fortran_io_error_: 120.  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