COMPILATION LISTING OF SEGMENT gtss_drl_tapein_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1251.4 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * * 4* * Copyright, (C) Honeywell Information Systems Inc., 1981 * 5* * * 6* * * 7* *********************************************************** */ 8 9 gtss_drl_tapein_: proc (mcpp, increment); 10 11 /** gtss accept paper tape input. 12* Author: Bob Alvarado 05/15/79 13* Changed: Scott C. Akers 08/17/81 14* Reset tty_modes on QUIT. 15***/ 16 dcl mcpp ptr parm; 17 dcl increment fixed bin parm; 18 mcp = mcpp; 19 20 /** 21* 22* DRL tapein, START PAPER TAPE INPUT (octal 27) 23* 24* 25* 8_________1_6_____________________ 26* 27* DRL tapein 28* ZERO L(tally),L(char) 29* 30* (See TSS SYSTEM PROGRAMMER'S 31* REFERENCE MANUAL DD17C, Rev. 0, July 1976 32* Page 3-27) 33* 34**/ 35 36 increment = 1 ; /* One arguments */ 37 /* output any message. */ 38 39 call gtss_drl_kotnow_ ( 40 mcp, (1)); 41 42 call gtss_aft_$find ("TAP*", fn, code); 43 if code ^= 0 then do; 44 call gtss_abort_subsystem_ ( 45 mcp 46 , "gtss_drl_tapein_" 47 , 0 48 , "TAP* not available." 49 ); 50 end; 51 52 /** Initialize data base used for file IO by 53* gtss_drl_tapein_ **/ 54 unspec (gtss_tapstar_$FILE) = "0"b; 55 gtss_tapstar_$FILE.OP1.Device_Command = seek_cmd; 56 gtss_tapstar_$FILE.OP1.Count = 2; 57 /* 2=> two operations */ 58 gtss_tapstar_$FILE.OP2.Device_Command = write_cmd; 59 gtss_tapstar_$FILE.ID1.DCW_list_loc = rel (addr (gtss_tapstar_$FILE.Seek_Word)); 60 gtss_tapstar_$FILE.ID2.DCW_list_loc = rel (addr (gtss_tapstar_$FILE.DCW)); 61 gtss_tapstar_$FILE.Seek_loc = rel (addr (gtss_tapstar_$FILE.Seek_Address)); 62 gtss_tapstar_$FILE.Status_loc = rel (addr (gtss_tapstar_$FILE.STATUS)); 63 gtss_tapstar_$FILE.Seek_count = 1; 64 gtss_tapstar_$FILE.ID1.fcb_loc = rel (addr (gtss_tapstar_$FILE.aft_tap_name)); 65 gtss_tapstar_$FILE.ID2.fcb_loc = rel (addr (gtss_tapstar_$FILE.aft_tap_name)); 66 gtss_tapstar_$FILE.aft_tap_name = "tap*"; 67 gtss_tapstar_$FILE.DCW.memory_loc = rel (addr (gtss_tapstar_$FILE.file)); 68 gtss_tapstar_$FILE.DCW.word_count = 64; 69 local_seek_addr = 0; 70 no_words = 0; 71 rel_block_ct = 0; 72 process_state = 0; 73 call iox_$attach_name ( 74 "gtss_ppt_input" 75 , gtss_ext_$ppt 76 , "syn_ user_input" 77 , null () 78 , code 79 ); 80 if code ^= 0 then 81 if code ^= error_table_$not_detached then do; 82 call com_err_ ( 83 code 84 , "gtss_drl_tapein_" 85 , "unable to attach gtss_ppt_input file" 86 ); 87 signal cond (gtss_fail); 88 return; 89 end; 90 process_state = 1; 91 frame_end = ""; 92 /* set frame begin and end characters */ 93 call iox_$control ( 94 gtss_ext_$ppt 95 , "set_framing_chars" 96 , addr (framing_chars) 97 , code 98 ); 99 if code ^= 0 then do; 100 call com_err_ ( 101 code 102 , "gtss_drl_tapein_" 103 , "unable to set framing chars via $control" 104 ); 105 signal cond (gtss_fail); 106 return; 107 end; 108 process_state = 2; 109 call iox_$modes ( 110 gtss_ext_$ppt 111 , "^crecho,^lfecho,^tabecho,^fulldpx,^echoplex,rawi,ctl_char,blk_xfer" 112 , tty_modes 113 , code 114 ); 115 if code ^= 0 then do; 116 call com_err_ ( 117 code 118 , "gtss_drl_tapein_" 119 , "unable to set frame chars via $modes" 120 ); 121 signal cond (gtss_fail); 122 return; 123 end; 124 tp = addr (records (1)); 125 process_state = 3; 126 on quit begin; 127 call gtss_fix_tty_modes_; 128 in_quit_state = "1"b; 129 goto quit_get_chars; 130 end; 131 get_chars: 132 call iox_$get_chars ( 133 gtss_ext_$ppt 134 , addr (tape_rec) 135 , hbound (tape_rec, 1) 136 , bytes_read 137 , code 138 ); 139 if tape_rec (bytes_read) = XOFF then do; 140 words_read = divide (bytes_read + 3, 4, 24) + 1; 141 if (no_words + words_read) 142 > hbound (gtss_tapstar_$FILE.file.records, 1) then 143 call write_tape; 144 no_words = no_words + words_read; 145 unspec (rcw) = "0"b; 146 rcw.y = "1"b; 147 rcw.m = bytes_read; 148 string (input_rec.rec) = string (tape_rec); 149 call write_tape; 150 goto quit_get_chars; 151 end; 152 if code ^= 0 then do; 153 call com_err_ ( 154 code 155 , "gtss_drl_tapein_" 156 , "unable to get ppt input" 157 ); 158 signal cond (gtss_fail); 159 return; 160 end; 161 words_read = divide (bytes_read+3, 4, 24) + 1; 162 if (no_words + words_read) 163 > hbound (gtss_tapstar_$FILE.file.records, 1) then 164 call write_tape; 165 no_words = no_words + words_read; 166 unspec (rcw) = "0"b; 167 rcw.m = bytes_read; 168 string (input_rec.rec) = string (tape_rec); 169 tp = addrel (tp, size (tp_rec)); 170 goto get_chars; 171 quit_get_chars: 172 if process_state = 3 then do; 173 call iox_$modes ( 174 gtss_ext_$ppt 175 , tty_modes 176 , tty_modes_old 177 , code 178 ); 179 if code ^= 0 then do; 180 call com_err_ ( 181 code 182 , "gtss_drl_tapein_" 183 , "unable to reset frame chars via $modes" 184 ); 185 signal cond (gtss_fail); 186 return; 187 end; 188 end; 189 if process_state > 1 then do; 190 frame_end = ""; 191 call iox_$control ( 192 gtss_ext_$ppt 193 , "set_framing_chars" 194 , addr (framing_chars) 195 , code 196 ); 197 if code ^= 0 then do; 198 call com_err_ ( 199 code 200 , "gtss_drl_tapein_" 201 , "unable to reset framing chars via $modes" 202 ); 203 signal cond (gtss_fail); 204 return; 205 end; 206 end; 207 if process_state > 0 then do; 208 call iox_$detach_iocb ( 209 gtss_ext_$ppt 210 , code 211 ); 212 if code ^= 0 then do; 213 call com_err_ ( 214 code 215 , "gtss_drl_tapein_" 216 , "unable to detach gtss_ppt_input" 217 ); 218 signal cond (gtss_fail); 219 return; 220 end; 221 end; 222 if in_quit_state then do; 223 call gtss_ios_close_ ( 224 fn 225 , addr (fms_status) 226 , code 227 ); 228 dcl 1 fms_status aligned, 229 2 bit12 bit(12)unal, 230 2 bit60 bit(60)unal; 231 if fms_status.bit12 ^= "4000"b3 then do; 232 call com_err_ ( 233 "gtss_drl_tapein_" 234 , "unable to close TAP* on quit condition (status ^w)" 235 , fms_status 236 ); 237 signal cond (gtss_fail); 238 return; 239 end; 240 call gtss_aft_$delete ( 241 "TAP*" 242 , fn 243 , code 244 ); 245 if code ^= 0 then do; 246 call gtss_abort_subsystem_ ( 247 mcp 248 , "gtss_drl_tapein_" 249 , 0 250 , "unable to delete TAP*" 251 ); 252 end; 253 revert quit; 254 signal quit; 255 end; 256 gtss_ust_ext_$ust.gtss_ust.lflg2.b27 = "1"b; 257 gtss_ust_ext_$ust.gtss_ust.lflg2.b28 = "1"b; 258 return; 259 260 write_tape: proc; 261 gtss_tapstar_$FILE.Seek_Address = local_seek_addr; 262 call gtss_ios_io_ ( 263 fn 264 , addr (select_sequence) 265 , addr (select_sequence) 266 , fixed (rel (addr (gtss_tapstar_$FILE.records (hbound (records, 1))))) 267 , status 268 , code 269 ); 270 if status ^= 0 then do; 271 call com_err_ ( 272 "gtss_drl_tapein_" 273 , "unable to write TAP* file (status ^i)" 274 , status 275 ); 276 signal cond (gtss_fail); 277 return; 278 end; 279 local_seek_addr = local_seek_addr + 1; 280 no_words = 0; 281 rel_block_ct = rel_block_ct + 1; 282 tp = addr (records (1)); 283 return; 284 end; 285 286 /** Variables for gtss_drl_tapein_: 287* IDENTIFIER ATTRIBUTES **/ 288 dcl addrel builtin; 289 dcl size builtin; 290 dcl arg_list_ptr ptr; 291 dcl code fixed bin(35); 292 dcl fn fixed bin(24); 293 dcl gtss_fail condition ext; 294 dcl gtss_fix_tty_modes_ ext entry; 295 dcl quit condition ext; 296 dcl gseg ptr; 297 dcl status fixed bin(24); 298 dcl bytes_read fixed bin(21); 299 dcl process_state fixed bin(18) unsigned; 300 dcl in_quit_state bit(1) init("0"b); 301 dcl words_read fixed bin (24); 302 dcl local_seek_addr fixed bin (35); 303 dcl i fixed bin(18); 304 dcl tape_rec (120) bit(9) unal; 305 dcl tp ptr; 306 dcl 1 tp_rec based (tp) aligned 307 , 2 rcw 308 , 3 m fixed bin (18) unsigned unal 309 , 3 fil1 bit (15) unal 310 , 3 x bit (1) unal 311 , 3 y bit (1) unal 312 , 3 fil2 bit (1) unal 313 , 2 input_rec 314 , 3 rec (tp_rec.m) bit (9) unal; 315 dcl 1 framing_chars aligned 316 ,2 frame_begin char(1) unal 317 , 2 frame_end char(1) unal; 318 dcl iox_$user_input ext ptr; 319 dcl error_table_$not_detached ext fixed bin(35); 320 dcl tty_modes char(256); 321 dcl tty_modes_old char(256); 322 dcl iox_$get_chars entry ( 323 ptr 324 ,ptr 325 ,fixed bin (21) 326 ,fixed bin (21) 327 ,fixed bin (35)); 328 dcl iox_$attach_name entry ( 329 char (*) 330 ,ptr 331 ,char (*) 332 ,ptr 333 ,fixed bin (35) 334 ); 335 dcl iox_$control entry ( 336 ptr 337 ,char (*) 338 ,ptr 339 ,fixed bin (35) 340 ); 341 dcl iox_$modes entry ( 342 ptr 343 ,char(*) 344 ,char(*) 345 ,fixed bin(35) 346 ); 347 dcl iox_$detach_iocb entry ( 348 ptr 349 ,fixed bin (35) 350 ); 351 352 dcl 1 arg_list aligned based(arg_list_ptr) 353 , 2 L_tally bit(18)unal 354 , 2 L_char bit(18)unal 355 ; 356 dcl XOFF bit (9) static int options (constant) init ("023"b3); 357 1 1 /* BEGIN INCLUDE FILE gtss_tapstar_.incl.pl1 */ 1 2 /* 1 3* Created: (Alvarado Multics) 04/23/79 1500 mst Mon 1 4**/ 1 5 1 6 /** gtss_TAP*_input_ data structure to provide 1 7*for accesing the current TAP* file. 1 8* **/ 1 9 dcl 1 gtss_tapstar_$FILE aligned static ext 1 10 , 3 select_sequence 1 11 , 4 OP1 /* Seek operation. */ 1 12 , 5 Device_Command bit(06)unal 1 13 , 5 zeroes_1 fixed bin(12)unsigned unal 1 14 , 5 IOC_Command bit(05)unal 1 15 , 5 zeroes_2 fixed bin(01)unsigned unal 1 16 , 5 Control fixed bin(06)unsigned unal 1 17 , 5 Count fixed bin(06)unsigned unal 1 18 1 19 , 4 ID1 1 20 , 5 fcb_loc bit(18)unal 1 21 , 5 DCW_list_loc bit(18)unal 1 22 1 23 , 4 OP2 /* Write opteration. */ 1 24 , 5 Device_Command bit(06)unal 1 25 , 5 zeroes_1 fixed bin(12)unsigned unal 1 26 , 5 IOC_Command bit(05)unal 1 27 , 5 zeroes_2 fixed bin(01)unsigned unal 1 28 , 5 Control fixed bin(06)unsigned unal 1 29 , 5 Count fixed bin(06)unsigned unal 1 30 1 31 , 4 ID2 1 32 , 5 fcb_loc bit(18)unal 1 33 , 5 DCW_list_loc bit(18)unal 1 34 1 35 , 4 RETURN_WORD 1 36 , 5 Status_loc bit(18)unal 1 37 , 5 Courtesy_Call_loc bit(18)unal 1 38 1 39 , 3 Seek_Word 1 40 , 4 Seek_loc bit(18)unal 1 41 , 4 Seek_count fixed bin(18)unsigned unal 1 42 , 3 Seek_Address fixed bin(35) 1 43 , 3 STATUS bit(72) unal 1 44 1 45 , 3 DCW 1 46 , 4 memory_loc bit(18)unal 1 47 , 4 zeroes_3 fixed bin(03)unsigned unal 1 48 , 4 action_code fixed bin(03)unsigned unal 1 49 , 4 word_count fixed bin(12)unsigned unal 1 50 , 3 aft_tap_name char(8) 1 51 1 52 , 3 file 1 53 , 4 BCW 1 54 , 5 no_words fixed bin (18) unsigned unal 1 55 , 5 rel_block_ct fixed bin (18) unsigned unal 1 56 , 4 records (63) bit (36) unal 1 57 ; 1 58 1 59 /* END INCLUDE FILE gtss_tapstar_.incl.pl1 */ 358 359 2 1 /* BEGIN INCLUDE FILE gtss_device_cmds.incl.pl1 */ 2 2 /* 2 3* Created: (Wardd Multics) 07/08/78 1503.0 mst Sat 2 4**/ 2 5 dcl read_cmd bit(6)static int options(constant)init("25"b3); 2 6 dcl seek_cmd bit(6)static int options(constant)init("34"b3); 2 7 dcl write_cmd bit(6)static int options(constant)init("31"b3); 2 8 /* END INCLUDE FILE gtss_device_cmds.incl.pl1 */ 360 361 3 1 /* BEGIN INCLUDE FILE gtss_ext_.incl.pl1 */ 3 2 /* 3 3* Created: (Wardd Multics) 05/20/78 1307.6 mst Sat 3 4* Modified: Ward 1981 add suspended_process dcl 3 5* Modified: Ron Barstad 83-07-21 Fixed level number on mcfc to 3 3 6* Modified: Ron Barstad 83-07-25 Fixed derail range in statistics to 4js3 number 3 7**/ 3 8 dcl gtss_ext_$aem fixed bin static ext /* >0 Print "additional" error information. */; 3 9 dcl gtss_ext_$bad_drl_rtrn static ext label /* Default for drl_rtrn. */; 3 10 dcl gtss_ext_$db (72)bit(1)unal static ext; 3 11 dcl gtss_ext_$deferred_catalogs_ptr ptr ext; 3 12 dcl gtss_ext_$dispose_of_drl static ext label /* quit handlers for some derails use this label to abort */; 3 13 dcl gtss_ext_$drl_rtrn (4)static ext label /* where to return at subsystem end */; 3 14 dcl gtss_ext_$drm_path char(168)static ext /* gtss_expand_pathname_stores drm_path */; 3 15 dcl gtss_ext_$drun_jid char (5) static ext /* valid only for DRUN executing under absentee */; 3 16 dcl gtss_ext_$event_channel fixed bin (71) static ext /* used for DABT signals */; 3 17 dcl gtss_ext_$finished static ext label /* Return to gtss for normal conclusion. */; 3 18 dcl gtss_ext_$gdb_name char(8)ext /* Name H* module to debug. */; 3 19 dcl gtss_ext_$get_line entry(ptr,ptr,fixed bin(21),fixed bin(21),fixed bin(35))variable ext /* Build mode input procedure. */; 3 20 dcl gtss_ext_$gtss_slave_area_seg (4) ext static ptr /* pointer to gtss slave area segment */; 3 21 dcl gtss_ext_$hcs_work_area_ptr ptr ext static /* Temp seg for acl lists. */; 3 22 dcl gtss_ext_$homedir char (64) static ext /* user's home dir */; 3 23 dcl gtss_ext_$last_k_was_out bit (1)aligned ext static /* "1"b => last tty output was output. */; 3 24 dcl gtss_ext_$pdir char (168) varying ext static /* pathname of process directory */; 3 25 dcl gtss_ext_$popup_from_pi static ext label /* transfer to this label after pi simulates popup primitive */; 3 26 dcl gtss_ext_$process_type fixed bin (17) static ext; 3 27 dcl gtss_ext_$put_chars entry(ptr,ptr,fixed bin(24),fixed bin(35)) variable ext /* Terminal output procedure. */; 3 28 dcl gtss_ext_$restart_from_pi static ext label /* transfer to this label after pi restores machine conditions */; 3 29 dcl gtss_ext_$restart_seg_ptr ptr static ext /* points to DRUN restart file when exec under absentee */; 3 30 dcl gtss_ext_$sig_ptr ext static ptr /* saved ptr to signal_ */; 3 31 dcl gtss_ext_$stack_level_ fixed bin ext static; 3 32 dcl gtss_ext_$suspended_process bit(1) ext static; 3 33 dcl gtss_ext_$SYstarstar_file_no fixed bin (24) static ext; 3 34 dcl gtss_ext_$user_id char (26)var ext; 3 35 dcl gtss_ext_$work_area_ptr ptr ext; 3 36 3 37 dcl 1 gtss_ext_$CFP_bits aligned static external 3 38 , 3 no_input_yet bit (1) unaligned /* used in gtss_CFP_input_, gtss_read_starCFP_ */ 3 39 , 3 rtn_bits bit (4) unaligned /* used in gtss_CFP_input_, gtss_CFP_output_ */ 3 40 , 3 cpos_called bit (1) unaligned /* used in gtss_CFP_input_, gtss_drl_t_cfio_, gtss_abandon_CFP_ */ 3 41 , 3 cout_called bit (1) unaligned /* used in gtss_read_starCFP_, gtss_abandon_CFP_ */ 3 42 , 3 build_mode bit (1) unaligned /* used in gtss_build_, gtss_dsd_process_ */ 3 43 ; 3 44 3 45 dcl 1 gtss_ext_$com_reg aligned static ext, 3 46 3 tsdmx, 3 47 4 dst fixed bin (18) unsigned unaligned, 3 48 4 dit fixed bin (18) unsigned unaligned, 3 49 3 tsdpt fixed bin (36) unsigned unaligned, 3 50 3 tsddt fixed bin (36) unsigned unaligned, 3 51 3 tsdid bit (72) unaligned, 3 52 3 tsdsd bit (36) unaligned, 3 53 3 tsdst fixed bin (36) unsigned unaligned, 3 54 3 tsdjb fixed bin (35) unaligned, 3 55 3 tsdgt, 3 56 4 ust_loc fixed bin (18) unsigned unaligned, 3 57 4 gating_ctl fixed bin (18) unsigned unaligned, 3 58 3 tcdfr bit (36) unaligned; 3 59 3 60 dcl 1 gtss_ext_$flags aligned static ext 3 61 , 3 dispose_of_drl_on_pi bit (01) unal /* 1 => drl that should be aborted after quit-pi sequence */ 3 62 , 3 drl_in_progress bit (01) unal /* 1 => drl handler executing; 0 => gcos code executing */ 3 63 , 3 popup_from_pi bit (01) unal /* 1 => derail processor will simulate Gcos break instead of returning */ 3 64 , 3 unfinished_drl bit (01) unal /* 1 => subsystem is handling breaks and quit was raised during a drl */ 3 65 , 3 ss_time_limit_set bit (01) unal /* 1 => exec time limit set for subsystem */ 3 66 , 3 timer_ranout bit (01) unal /* 1 => user is executing timer runout code */ 3 67 , 3 gtss_com_err_sw bit (01) unal /* 1 => stop com_err_ string from going to terminal */ 3 68 , 3 available bit (65) unal 3 69 ; 3 70 3 71 3 72 dcl 1 gtss_ext_$statistics aligned static ext, /* Derail usage statistics */ 3 73 3 total_time (-10:71)fixed bin (71), 3 74 3 count (-10:71)fixed bin (17); 3 75 3 76 /* Declaration of Available File Table 3 77* */ 3 78 dcl 1 gtss_ext_$aft aligned ext, /* aft structure */ 3 79 3 80 3 start_list (0:102) fixed bin (24), /* >0 => 1st aft_entry row to start of next entry chain. */ 3 81 3 82 3 aft_entry (20), 3 83 4 altname char (8), /* altname name for attaching this file */ 3 84 4 next_entry fixed bin (24), /* Next aft_entry in hash chain. */ 3 85 4 previous_add fixed bin (24), /* Previously added entry. */ 3 86 4 next_add fixed bin (24), /* Entry added after this one. */ 3 87 4 used bit (1) unal, /* "1"b => aft_entry contains AFT value. */ 3 88 4 forced bit(1) unal, /* "1"b => gtss_verify_access_ forced access on this file. */ 3 89 3 90 3 free_space fixed bin (24), /* Index of start of free space list for aft entries. */ 3 91 3 first_added fixed bin (24), /* >0 => start of chain in add order. */ 3 92 3 last_added fixed bin (24) /* >0 => end of chain in added order. */; 3 93 3 94 dcl gtss_ext_$ppt ptr ext /* switch name for tapein drl */; 3 95 /** Data structure to provide access to installed 3 96* subsystems fast library load. 3 97* **/ 3 98 dcl 1 gtss_ext_$fast_lib aligned ext 3 99 , 3 fast_lib_fcb ptr /* Pointer to msf fcb. */ 3 100 , 3 fast_lib_ncp fixed bin (24) /* Number of components. */ 3 101 , 3 comp_ptr (0:9)ptr /* Pointer to component. */ 3 102 , 3 comp_wds (0:9)fixed bin (24) /* Component length (words). */ 3 103 ; 3 104 3 105 /* Pointers to segments to regulate multipler 3 106* callers to files. Same segments are used to regulate 3 107* all simulator callers. 3 108**/ 3 109 dcl 1 gtss_ext_$mcfc aligned ext, 3 110 3 multics_lock_id bit(36), 3 111 3 wait_time fixed bin, 3 112 3 files_ptr ptr, 3 113 3 names_ptr ptr, 3 114 3 callers_ptr (0:3)ptr 3 115 ; 3 116 3 117 /* END INCLUDE FILE gtss_ext_.incl.pl1 */ 362 363 4 1 /* */ 4 2 /* BEGIN INCLUDE FILE mc.incl.pl1 Created Dec 72 for 6180 - WSS. */ 4 3 /* Modified 06/07/76 by Greenberg for mc.resignal */ 4 4 /* Modified 07/07/76 by Morris for fault register data */ 4 5 /* Modified 08/28/80 by J. A. Bush for the DPS8/70M CVPU */ 4 6 /* Modified '82 to make values constant */ 4 7 4 8 /* words 0-15 pointer registers */ 4 9 4 10 dcl mcp ptr; 4 11 4 12 dcl 1 mc based (mcp) aligned, 4 13 2 prs (0:7) ptr, /* POINTER REGISTERS */ 4 14 (2 regs, /* registers */ 4 15 3 x (0:7) bit (18), /* index registers */ 4 16 3 a bit (36), /* accumulator */ 4 17 3 q bit (36), /* q-register */ 4 18 3 e bit (8), /* exponent */ 4 19 3 pad1 bit (28), 4 20 3 t bit (27), /* timer register */ 4 21 3 pad2 bit (6), 4 22 3 ralr bit (3), /* ring alarm register */ 4 23 4 24 2 scu (0:7) bit (36), 4 25 4 26 2 mask bit (72), /* mem controller mask at time of fault */ 4 27 2 ips_temp bit (36), /* Temporary storage for IPS info */ 4 28 2 errcode fixed bin (35), /* fault handler's error code */ 4 29 2 fim_temp, 4 30 3 unique_index bit (18) unal, /* unique index for restarting faults */ 4 31 3 resignal bit (1) unal, /* recompute signal name with fcode below */ 4 32 3 fcode bit (17) unal, /* fault code used as index to FIM table and SCT */ 4 33 2 fault_reg bit (36), /* fault register */ 4 34 2 pad2 bit (1), 4 35 2 cpu_type fixed bin (2) unsigned, /* L68 = 0, DPS8/70M = 1 */ 4 36 2 ext_fault_reg bit (15), /* extended fault reg for DPS8/70M CPU */ 4 37 2 fault_time bit (54), /* time of fault */ 4 38 4 39 2 eis_info (0:7) bit (36)) unaligned; 4 40 4 41 4 42 dcl (apx fixed bin init (0), 4 43 abx fixed bin init (1), 4 44 bpx fixed bin init (2), 4 45 bbx fixed bin init (3), 4 46 lpx fixed bin init (4), 4 47 lbx fixed bin init (5), 4 48 spx fixed bin init (6), 4 49 sbx fixed bin init (7)) internal static options (constant); 4 50 4 51 4 52 4 53 4 54 dcl scup ptr; 4 55 4 56 dcl 1 scu based (scup) aligned, /* SCU DATA */ 4 57 4 58 4 59 /* WORD (0) */ 4 60 4 61 (2 ppr, /* PROCEDURE POINTER REGISTER */ 4 62 3 prr bit (3), /* procedure ring register */ 4 63 3 psr bit (15), /* procedure segment register */ 4 64 3 p bit (1), /* procedure privileged bit */ 4 65 4 66 2 apu, /* APPENDING UNIT STATUS */ 4 67 3 xsf bit (1), /* ext seg flag - IT modification */ 4 68 3 sdwm bit (1), /* match in SDW Ass. Mem. */ 4 69 3 sd_on bit (1), /* SDW Ass. Mem. ON */ 4 70 3 ptwm bit (1), /* match in PTW Ass. Mem. */ 4 71 3 pt_on bit (1), /* PTW Ass. Mem. ON */ 4 72 3 pi_ap bit (1), /* Instr Fetch or Append cycle */ 4 73 3 dsptw bit (1), /* Fetch of DSPTW */ 4 74 3 sdwnp bit (1), /* Fetch of SDW non paged */ 4 75 3 sdwp bit (1), /* Fetch of SDW paged */ 4 76 3 ptw bit (1), /* Fetch of PTW */ 4 77 3 ptw2 bit (1), /* Fetch of pre-paged PTW */ 4 78 3 fap bit (1), /* Fetch of final address paged */ 4 79 3 fanp bit (1), /* Fetch of final address non-paged */ 4 80 3 fabs bit (1), /* Fetch of final address absolute */ 4 81 4 82 2 fault_cntr bit (3), /* number of retrys of EIS instructions */ 4 83 4 84 4 85 /* WORD (1) */ 4 86 4 87 2 fd, /* FAULT DATA */ 4 88 3 iro bit (1), /* illegal ring order */ 4 89 3 oeb bit (1), /* out of execute bracket */ 4 90 3 e_off bit (1), /* no execute */ 4 91 3 orb bit (1), /* out of read bracket */ 4 92 3 r_off bit (1), /* no read */ 4 93 3 owb bit (1), /* out of write bracket */ 4 94 3 w_off bit (1), /* no write */ 4 95 3 no_ga bit (1), /* not a gate */ 4 96 3 ocb bit (1), /* out of call bracket */ 4 97 3 ocall bit (1), /* outward call */ 4 98 3 boc bit (1), /* bad outward call */ 4 99 3 inret bit (1), /* inward return */ 4 100 3 crt bit (1), /* cross ring transfer */ 4 101 3 ralr bit (1), /* ring alarm register */ 4 102 3 am_er bit (1), /* associative memory fault */ 4 103 3 oosb bit (1), /* out of segment bounds */ 4 104 3 paru bit (1), /* processor parity upper */ 4 105 3 parl bit (1), /* processor parity lower */ 4 106 3 onc_1 bit (1), /* op not complete type 1 */ 4 107 3 onc_2 bit (1), /* op not complete type 2 */ 4 108 4 109 2 port_stat, /* PORT STATUS */ 4 110 3 ial bit (4), /* illegal action lines */ 4 111 3 iac bit (3), /* illegal action channel */ 4 112 3 con_chan bit (3), /* connect channel */ 4 113 4 114 2 fi_num bit (5), /* (fault/interrupt) number */ 4 115 2 fi_flag bit (1), /* 1 => fault, 0 => interrupt */ 4 116 4 117 4 118 /* WORD (2) */ 4 119 4 120 2 tpr, /* TEMPORARY POINTER REGISTER */ 4 121 3 trr bit (3), /* temporary ring register */ 4 122 3 tsr bit (15), /* temporary segment register */ 4 123 4 124 2 pad2 bit (9), 4 125 4 126 2 cpu_no bit (3), /* CPU number */ 4 127 4 128 2 delta bit (6), /* tally modification DELTA */ 4 129 4 130 4 131 /* WORD (3) */ 4 132 4 133 2 word3 bit (18), 4 134 4 135 2 tsr_stat, /* TSR STATUS for 1,2,&3 word instructions */ 4 136 3 tsna, /* Word 1 status */ 4 137 4 prn bit (3), /* Word 1 PR number */ 4 138 4 prv bit (1), /* Word 1 PR valid bit */ 4 139 3 tsnb, /* Word 2 status */ 4 140 4 prn bit (3), /* Word 2 PR number */ 4 141 4 prv bit (1), /* Word 2 PR valid bit */ 4 142 3 tsnc, /* Word 3 status */ 4 143 4 prn bit (3), /* Word 3 PR number */ 4 144 4 prv bit (1), /* Word 3 PR valid bit */ 4 145 4 146 2 tpr_tbr bit (6), /* TPR.TBR field */ 4 147 4 148 4 149 /* WORD (4) */ 4 150 4 151 2 ilc bit (18), /* INSTRUCTION COUNTER */ 4 152 4 153 2 ir, /* INDICATOR REGISTERS */ 4 154 3 zero bit (1), /* zero indicator */ 4 155 3 neg bit (1), /* negative indicator */ 4 156 3 carry bit (1), /* carryry indicator */ 4 157 3 ovfl bit (1), /* overflow indicator */ 4 158 3 eovf bit (1), /* eponent overflow */ 4 159 3 eufl bit (1), /* exponent underflow */ 4 160 3 oflm bit (1), /* overflow mask */ 4 161 3 tro bit (1), /* tally runout */ 4 162 3 par bit (1), /* parity error */ 4 163 3 parm bit (1), /* parity mask */ 4 164 3 bm bit (1), /* ^bar mode */ 4 165 3 tru bit (1), /* truncation mode */ 4 166 3 mif bit (1), /* multi-word instruction mode */ 4 167 3 abs bit (1), /* absolute mode */ 4 168 3 hex bit (1), /* hexadecimal exponent mode */ 4 169 3 pad bit (3), 4 170 4 171 4 172 /* WORD (5) */ 4 173 4 174 2 ca bit (18), /* COMPUTED ADDRESS */ 4 175 4 176 2 cu, /* CONTROL UNIT STATUS */ 4 177 3 rf bit (1), /* on first cycle of repeat instr */ 4 178 3 rpt bit (1), /* repeat instruction */ 4 179 3 rd bit (1), /* repeat double instruction */ 4 180 3 rl bit (1), /* repeat link instruciton */ 4 181 3 pot bit (1), /* IT modification */ 4 182 3 pon bit (1), /* return type instruction */ 4 183 3 xde bit (1), /* XDE from Even location */ 4 184 3 xdo bit (1), /* XDE from Odd location */ 4 185 3 poa bit (1), /* operation preparation */ 4 186 3 rfi bit (1), /* tells CPU to refetch instruction */ 4 187 3 its bit (1), /* ITS modification */ 4 188 3 if bit (1), /* fault occured during instruction fetch */ 4 189 4 190 2 cpu_tag bit (6)) unaligned, /* computed tag field */ 4 191 4 192 4 193 /* WORDS (6,7) */ 4 194 4 195 2 even_inst bit (36), /* even instruction of faulting pair */ 4 196 4 197 2 odd_inst bit (36); /* odd instruction of faulting pair */ 4 198 4 199 4 200 4 201 4 202 4 203 4 204 /* ALTERNATE SCU DECLARATION */ 4 205 4 206 4 207 dcl 1 scux based (scup) aligned, 4 208 4 209 (2 pad0 bit (36), 4 210 4 211 2 fd, /* GROUP II FAULT DATA */ 4 212 3 isn bit (1), /* illegal segment number */ 4 213 3 ioc bit (1), /* illegal op code */ 4 214 3 ia_am bit (1), /* illegal address - modifier */ 4 215 3 isp bit (1), /* illegal slave procedure */ 4 216 3 ipr bit (1), /* illegal procedure */ 4 217 3 nea bit (1), /* non existent address */ 4 218 3 oobb bit (1), /* out of bounds */ 4 219 3 pad bit (29), 4 220 4 221 2 pad2 bit (36), 4 222 4 223 2 pad3a bit (18), 4 224 4 225 2 tsr_stat (0:2), /* TSR STATUS as an ARRAY */ 4 226 3 prn bit (3), /* PR number */ 4 227 3 prv bit (1), /* PR valid bit */ 4 228 4 229 2 pad3b bit (6)) unaligned, 4 230 4 231 2 pad45 (0:1) bit (36), 4 232 4 233 2 instr (0:1) bit (36); /* Instruction ARRAY */ 4 234 4 235 4 236 4 237 /* END INCLUDE FILE mc.incl.pl1 */ 364 365 5 1 /* BEGIN INCLUDE FILE gtss_io_status_words.incl.pl1 */ 5 2 /* 5 3* Created: (Wardd Multics) 06/16/78 1131.3 mst Fri 5 4**/ 5 5 5 6 /** GCOS status return words 5 7* (See: I/O PROGRAMMING 5 8* DB82, Rev. 0, August 1974 5 9* Pages 11-13) 5 10* **/ 5 11 5 12 dcl status_words_ptr ptr init(null()); 5 13 dcl 1 status_words aligned based(status_words_ptr) 5 14 , 3 WORD1 5 15 , 4 Termination_indicator bit(01)unal 5 16 , 4 Power_bit bit(01)unal 5 17 , 4 Major_status bit(04)unal 5 18 , 4 Substatus bit(06)unal 5 19 , 4 PSI_channel_odd_even_ind bit(01)unal 5 20 , 4 Marker_bit_interrupt bit(01)unal 5 21 , 4 Reserved bit(01)unal 5 22 , 4 Lost_interrupt_bit bit(01)unal 5 23 , 4 Initiate_interrupt_ind bit(01)unal 5 24 , 4 Abort_indicator bit(01)unal 5 25 , 4 IOM_status bit(06)unal 5 26 , 4 Address_extension_bits bit(06)unal 5 27 , 4 Record_count_residue bit(06)unal 5 28 5 29 , 3 WORD2 5 30 , 4 Data_address_residue bit(18)unal 5 31 , 4 Character_count bit(03)unal 5 32 , 4 Read_Write_control_bit bit(01)unal 5 33 , 4 Action_code bit(02)unal 5 34 , 4 Word_count_residue bit(12)unal 5 35 ; 5 36 /* END INCLUDE FILE gtss_io_status_words.incl.pl1 */ 366 367 6 1 /* BEGIN INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 6 2 /* UST: User Status Table 6 3* definitions based on 6 4* System Tables, Order number DD14-01E, January 1981 6 5* Section 15, Time Sharing System 6 6* 6 7* Authors: Robert J. Grimes Created 6 8* - Albert N. Kepner 1978 6 9* - Robert M. May 6 10* - David B. Ward 6 11* Change: Dave Ward 02/23/79 Level 4 numbering. 6 12* Change: Ron Barstad 83-07-12 Repaired damaged formating and word offset comments 6 13* Brought up to 4JS3 functionality 6 14**/ 6 15 /* octal word offsets of entries */ 6 16 dcl 1 gtss_ust_ext_$ust aligned ext, 6 17 3 gtss_ust, 6 18 /* 0-1 */ 4 lid bit (72), 6 19 /* 2 */ 4 lstp bit (36), 6 20 /* 3 */ 4 ltin bit (36), 6 21 /* 4 */ 4 lstio, 6 22 5 no_of_chars_by_8 fixed bin (18) uns unal, 6 23 5 no_of_disk_io fixed bin (18) uns unal, 6 24 /* 5 */ 4 lsnub bit (36), 6 25 /* 6-7 */ 4 lchg bit (72), 6 26 /* 10 */ 4 lbuf, 6 27 5 address bit (18)unaligned, 6 28 5 tally bit (1)unaligned, 6 29 5 terminal_type bit (5)unaligned, 6 30 5 station_id bit (12)unaligned, 6 31 /* 11-12 */ 4 liost (0:1) bit (36), 6 32 /* 13 */ 4 lcc bit (36), 6 33 /* 14 */ 4 lback, 6 34 5 fill1 bit (18) unaligned, 6 35 5 gwake fixed bin (17) unaligned, 6 36 /* 15 */ 4 lflag, 6 37 5 mp_list bit (18) unaligned, 6 38 5 flags unaligned, 6 39 6 b18 bit (1) unaligned, 6 40 6 b19 bit (1) unaligned, 6 41 6 b20 bit (1) unaligned, 6 42 6 b21 bit (1) unaligned, 6 43 6 b22 bit (1) unaligned, 6 44 6 b23 bit (1) unaligned, 6 45 6 b24 bit (1) unaligned, 6 46 6 b25 bit (1) unaligned, 6 47 6 b26 bit (1) unaligned, 6 48 6 b27 bit (1) unaligned, 6 49 6 b28 bit (1) unaligned, 6 50 6 b29 bit (1) unaligned, 6 51 6 b30 bit (1) unaligned, 6 52 6 b31 bit (1) unaligned, 6 53 6 b32 bit (1) unaligned, 6 54 6 b33 bit (1) unaligned, 6 55 6 b34 bit (1) unaligned, 6 56 6 b35 bit (1) unaligned, 6 57 /* 16 */ 4 lkdss bit (36), 6 58 /* 17 */ 4 lfile, 6 59 5 program_stack fixed bin (17) unal, 6 60 5 file_list_ptr bit (18) unal, 6 61 /* 20 */ 4 lttys bit (36), 6 62 /* 21 */ 4 lswth, 6 63 5 b0 bit (1) unaligned, 6 64 5 b1 bit (1) unaligned, 6 65 5 b2 bit (1) unaligned, 6 66 5 b3 bit (1) unaligned, 6 67 5 b4 bit (1) unaligned, 6 68 5 b5 bit (1) unaligned, 6 69 5 b6 bit (1) unaligned, 6 70 5 b7 bit (1) unaligned, 6 71 5 b8 bit (1) unaligned, 6 72 5 b9 bit (1) unaligned, 6 73 5 b10 bit (1) unaligned, 6 74 5 b11 bit (1) unaligned, 6 75 5 b12 bit (1) unaligned, 6 76 5 b13 bit (1) unaligned, 6 77 5 b14 bit (1) unaligned, 6 78 5 b15 bit (1) unaligned, 6 79 5 b16 bit (1) unaligned, 6 80 5 b17 bit (1) unaligned, 6 81 5 b18 bit (1) unaligned, 6 82 5 b19 bit (1) unaligned, 6 83 5 b20 bit (1) unaligned, 6 84 5 b21 bit (1) unaligned, 6 85 5 b22 bit (1) unaligned, 6 86 5 b23 bit (1) unaligned, 6 87 5 b24 bit (1) unaligned, 6 88 5 b25 bit (1) unaligned, 6 89 5 b26 bit (1) unaligned, 6 90 5 b27 bit (1) unaligned, 6 91 5 b28 bit (1) unaligned, 6 92 5 b29 bit (1) unaligned, 6 93 5 b30 bit (1) unaligned, 6 94 5 b31 bit (1) unaligned, 6 95 5 b32 bit (1) unaligned, 6 96 5 b33 bit (1) unaligned, 6 97 5 b34 bit (1) unaligned, 6 98 5 b35 bit (1) unaligned, 6 99 /* 22 */ 4 lsize, 6 100 5 bar fixed bin (17) unaligned, 6 101 5 limit bit (18) unaligned, 6 102 /* 23... */ 4 lswap, 6 103 5 fill bit (18) unal, 6 104 5 size bit (18) unal, 6 105 /* ...24 */ 4 transfer_cell bit (36) unal, 6 106 /* 25 */ 4 lerrm bit (36), 6 107 /* 26-37 */ 4 lcfil (0:9) bit (36), 6 108 /* 40 */ 4 lsybc, 6 109 5 b0_17 fixed bin (17) unaligned, 6 110 5 b18_35 fixed bin (17) unaligned, 6 111 /* 41-42 */ 4 lstem (0:1) bit (36), 6 112 /* 43 */ 4 lcals, 6 113 5 b0_17 fixed bin (17) unaligned, 6 114 5 b18_35 bit (18) unaligned, 6 115 /* 44-51 */ 4 subsystems (3), 6 116 5 content_lswap, 6 117 6 fill bit (18) unal, 6 118 6 size bit (18) unal, 6 119 5 tally_address fixed bin (17) unaligned, 6 120 5 ss_flags bit (18) unaligned, 6 121 /* 52 */ 4 ltalc, 6 122 5 tod fixed bin (17) unaligned, 6 123 5 startup fixed bin (17) unaligned, 6 124 /* 53 */ 4 lspts fixed bin (35), 6 125 /* 54 */ 4 lflg2, 6 126 5 b0 bit (1) unaligned, 6 127 5 b1 bit (1) unaligned, 6 128 5 b2 bit (1) unaligned, 6 129 5 b3 bit (1) unaligned, 6 130 5 b4 bit (1) unaligned, 6 131 5 b5 bit (1) unaligned, 6 132 5 b6 bit (1) unaligned, 6 133 5 b7 bit (1) unaligned, 6 134 5 b8 bit (1) unaligned, 6 135 5 b9 bit (1) unaligned, 6 136 5 b10 bit (1) unaligned, 6 137 5 b11 bit (1) unaligned, 6 138 5 b12 bit (1) unaligned, 6 139 5 b13 bit (1) unaligned, 6 140 5 b14 bit (1) unaligned, 6 141 5 b15 bit (1) unaligned, 6 142 5 b16 bit (1) unaligned, 6 143 5 b17 bit (1) unaligned, 6 144 5 b18 bit (1) unaligned, 6 145 5 b19 bit (1) unaligned, 6 146 5 b20 bit (1) unaligned, 6 147 5 b21 bit (1) unaligned, 6 148 5 b22 bit (1) unaligned, 6 149 5 b23 bit (1) unaligned, 6 150 5 b24 bit (1) unaligned, 6 151 5 b25 bit (1) unaligned, 6 152 5 b26 bit (1) unaligned, 6 153 5 b27 bit (1) unaligned, 6 154 5 b28 bit (1) unaligned, 6 155 5 b29 bit (1) unaligned, 6 156 5 b30 bit (1) unaligned, 6 157 5 b31 bit (1) unaligned, 6 158 5 b32 bit (1) unaligned, 6 159 5 b33 bit (1) unaligned, 6 160 5 b34 bit (1) unaligned, 6 161 5 b35 bit (1) unaligned, 6 162 /* 55-60 */ 4 lsftm (0:3) bit (36), 6 163 /* 61 */ 4 lsprt fixed bin (35), 6 164 /* 62 */ 4 ltrm bit (36), 6 165 /* 63 */ 4 linno fixed bin (35), 6 166 /* 64 */ 4 lincr fixed bin (35), 6 167 /* 65 */ 4 ltdes bit (36), 6 168 /* 66 */ 4 lbptr bit (36), 6 169 /* 67 */ 4 lpptr, 6 170 5 last_file_pat_ptr bin (18) uns unal, 6 171 5 lpptr_reserved bin (18) uns unal, 6 172 /* 70 */ 4 lsclp bit (36), 6 173 /* 71 */ 4 limit fixed bin (35), 6 174 /* 72 */ 4 lacpt, 6 175 5 jout_pat_offset bit (18) unal, 6 176 5 permissions unal, 6 177 6 lodx bit (1) unal, 6 178 6 cardin bit (1) unal, 6 179 6 talk bit (1) unal, 6 180 6 lods bit (1) unal, 6 181 5 cardin_urgency bit (14) unal, 6 182 /* 73 */ 4 ldrl, 6 183 5 ilc bit (18) unaligned, 6 184 5 code fixed bin (17) unaligned, 6 185 /* 74 */ 4 ljsnb bit (36), 6 186 /* 75 */ 4 ltm0 bit (36), 6 187 /* 76 */ 4 ltm1 bit (36), 6 188 /* 77 */ 4 ltm2 bit (36), 6 189 /* 100 */ 4 ltm3 bit (36), 6 190 /* 101 */ 4 ltm4 bit (36), 6 191 /* 102 */ 4 ltm5 bit (36), 6 192 /* 103 */ 4 ltmwt bit (36), 6 193 /* 104 */ 4 ltmrs bit (36), 6 194 /* 105 */ 4 ltc0 bit (36), 6 195 /* 106 */ 4 ltc1 bit (36), 6 196 /* 107 */ 4 ltc2 bit (36), 6 197 /* 110 */ 4 lct3 bit (36), 6 198 /* 111 */ 4 ltc4 bit (36), 6 199 /* 112 */ 4 ltc5 bit (36), 6 200 /* 113 */ 4 ltcw bit (36), 6 201 /* 114 */ 4 lkst bit (36), 6 202 /* 115 */ 4 lkst2 bit (36), 6 203 /* 116 */ 4 lkcc bit (36), 6 204 /* 117 */ 4 lkms bit (36), 6 205 /* 120-121 */ 4 lksdc (0:1) bit (36), 6 206 /* 122 */ 4 lkntp bit (36), 6 207 /* 123 */ 4 lkrdc bit (36), 6 208 /* 124 */ 4 lpqf bit (36), 6 209 /* 125 */ 4 lpqb bit (36), 6 210 /* 126 */ 4 lustl bit (36), 6 211 /* 127 */ 4 ltemp bit (36), 6 212 /* 130 */ 4 lrtll, 6 213 5 word_length fixed bin unaligned, 6 214 5 char_length fixed bin unaligned, 6 215 /* 131 */ 4 ltim bit (36), 6 216 /* 132 */ 4 lcfio, 6 217 5 sect_out fixed bin(18)unsigned unal, 6 218 5 sect_in fixed bin(18)unsigned unal, 6 219 /* 133 */ 4 lcfst, 6 220 5 initial_sect_out fixed bin(18)unsigned unal, 6 221 5 start_term fixed bin(18)unsigned unal, 6 222 /* 134 */ 4 lcmpt bit (36), 6 223 /* 135 */ 4 lcjid bit (36), 6 224 /* 136-137 */ 4 lrcal (0:1) bit (36), 6 225 /* 140 */ 4 lrdta bit (36), 6 226 /* 141 */ 4 lrrsk bit (36), 6 227 /* 142 */ 4 lrskd bit (36), 6 228 /* 143 */ 4 lrcc bit (36), 6 229 /* 144-145 */ 4 lrsts (0:1) bit (36), 6 230 /* 146 */ 4 lrtm bit (36), 6 231 /* 147 */ 4 lswt2, 6 232 5 b0 bit (1) unaligned, 6 233 5 b1 bit (1) unaligned, 6 234 5 b2 bit (1) unaligned, 6 235 5 b3 bit (1) unaligned, 6 236 5 b4 bit (1) unaligned, 6 237 5 b5 bit (1) unaligned, 6 238 5 b6 bit (1) unaligned, 6 239 5 b7 bit (1) unaligned, 6 240 5 b8 bit (1) unaligned, 6 241 5 b9 bit (1) unaligned, 6 242 5 b10 bit (1) unaligned, 6 243 5 b11 bit (1) unaligned, 6 244 5 b12 bit (1) unaligned, 6 245 5 b13 bit (1) unaligned, 6 246 5 b14 bit (1) unaligned, 6 247 5 b15 bit (1) unaligned, 6 248 5 b16 bit (1) unaligned, 6 249 5 b17 bit (1) unaligned, 6 250 5 b18 bit (1) unaligned, 6 251 5 b19 bit (1) unaligned, 6 252 5 b20 bit (1) unaligned, 6 253 5 b21 bit (1) unaligned, 6 254 5 b22 bit (1) unaligned, 6 255 5 b23 bit (1) unaligned, 6 256 5 b24 bit (1) unaligned, 6 257 5 b25 bit (1) unaligned, 6 258 5 b26 bit (1) unaligned, 6 259 5 b27 bit (1) unaligned, 6 260 5 b28 bit (1) unaligned, 6 261 5 b29 bit (1) unaligned, 6 262 5 b30 bit (1) unaligned, 6 263 5 b31 bit (1) unaligned, 6 264 5 b32 bit (1) unaligned, 6 265 5 b33 bit (1) unaligned, 6 266 5 b34 bit (1) unaligned, 6 267 5 b35 bit (1) unaligned, 6 268 /* 150 */ 4 llsnb bit (36), 6 269 /* 151 */ 4 lesq bit (36), 6 270 /* 152-153 */ 4 lumc (0:1) bit (36), 6 271 /* 154-155 */ 4 lfnam (0:1) bit (36), 6 272 /* 156 */ 4 lopts bit (36), 6 273 /* 157 */ 4 licec, 6 274 5 b0_17 bit (18) unaligned, 6 275 5 b18_35 fixed bin (17) unaligned, 6 276 /* 160 */ 4 lflg3, 6 277 5 b0 bit (1) unaligned, 6 278 5 b1 bit (1) unaligned, 6 279 5 b2 bit (1) unaligned, 6 280 5 b3 bit (1) unaligned, 6 281 5 b4 bit (1) unaligned, 6 282 5 b5 bit (1) unaligned, 6 283 5 b6 bit (1) unaligned, 6 284 5 b7 bit (1) unaligned, 6 285 5 b8 bit (1) unaligned, 6 286 5 b9 bit (1) unaligned, 6 287 5 b10 bit (1) unaligned, 6 288 5 b11 bit (1) unaligned, 6 289 5 b12 bit (1) unaligned, 6 290 5 b13 bit (1) unaligned, 6 291 5 b14 bit (1) unaligned, 6 292 5 b15 bit (1) unaligned, 6 293 5 b16 bit (1) unaligned, 6 294 5 b17 bit (1) unaligned, 6 295 5 b18 bit (1) unaligned, 6 296 5 b19 bit (1) unaligned, 6 297 5 b20 bit (1) unaligned, 6 298 5 b21 bit (1) unaligned, 6 299 5 b22 bit (1) unaligned, 6 300 5 b23 bit (1) unaligned, 6 301 5 b24 bit (1) unaligned, 6 302 5 b25 bit (1) unaligned, 6 303 5 b26 bit (1) unaligned, 6 304 5 b27 bit (1) unaligned, 6 305 5 b28 bit (1) unaligned, 6 306 5 b29 bit (1) unaligned, 6 307 5 b30 bit (1) unaligned, 6 308 5 b31 bit (1) unaligned, 6 309 5 b32 bit (1) unaligned, 6 310 5 b33 bit (1) unaligned, 6 311 5 b34 bit (1) unaligned, 6 312 5 b35 bit (1) unaligned, 6 313 /* 161-163 */ 4 lpage (0:2) bit (36), 6 314 /* 164 */ 4 lsit1 bit (36), 6 315 /* 165 */ 4 lsit2 bit (36), 6 316 /* 166 */ 4 lsit3 bit (36), 6 317 /* 167 */ 4 lsit4 bit (36), 6 318 /* The following entries are maintained by gtss and are not found in TSS UST */ 6 319 /* 170 */ 4 lxxx, /* program stack index, offset from gtss_ust */ 6 320 5 b0_17 fixed bin (17) unaligned, 6 321 5 b18_35 bit (18) unaligned, /* not used */ 6 322 /* 171-175 */ 4 lprgs (5), 6 323 5 b0_17 fixed bin (17) unaligned, 6 324 5 b18_35 fixed bin (17) unaligned, 6 325 /* 176 */ 4 fill bit (36), 6 326 /* 177 */ 4 remote_io_buffer aligned, 6 327 5 buffer_control_word, 6 328 6 current_line_pointer bit (18)unal, 6 329 6 buffer_threshold_address bit (18)unal, 6 330 5 number_words_transmitted fixed bin (17)unal, 6 331 5 FILL1 fixed bin (17)unal, 6 332 5 count_of_characters_transmitted fixed bin (17)unal, 6 333 5 FILL2 fixed bin (17)unal, 6 334 5 characters_transmitted (244) char (1) unal, 6 335 /* 277 */ 4 word_after_ust bit (36) aligned; 6 336 6 337 /* END INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 368 369 7 1 /* BEGIN INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 7 2 /* 7 3* Created: (Wardd Multics) 06/30/78 1624.8 mst Fri 7 4* Modified: Ron Barstad 84-02-24 Fixed wrong and obsolete entries 7 5**/ 7 6 7 7 /** gtss external entry variables. **/ 7 8 dcl com_err_ entry() options(variable); 7 9 dcl gtss_CFP_abort_ entry options(variable); 7 10 dcl gtss_CFP_break_ entry options(variable); 7 11 dcl gtss_CFP_input_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 7 12 dcl gtss_CFP_output_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 7 13 dcl gtss_abandon_CFP_ entry options(variable); 7 14 dcl gtss_abort_dump_ entry (fixed bin(18)); 7 15 dcl gtss_abort_subsystem_ entry options (variable); 7 16 dcl gtss_abort_subsystem_$not_imp entry (ptr, fixed bin(24)); 7 17 dcl gtss_abs_login_banner_ entry() returns(char(*)); 7 18 dcl gtss_abs_logout_banner_ entry() returns(char(*)); 7 19 dcl gtss_abs_$abs_equiv entry options(variable); 7 20 dcl gtss_abs_$cpu_runout entry (ptr, char(4)); 7 21 dcl gtss_abs_$create_absin entry() returns(char(*)); 7 22 dcl gtss_abs_$dabt_check entry (ptr, char(4)); 7 23 dcl gtss_abs_$get_id entry (char(5)) returns(char(19)); 7 24 dcl gtss_abs_$get_drm entry() returns(char(*)); 7 25 dcl gtss_adjust_size_ entry (ptr); 7 26 dcl gtss_aft_$add entry (char(8), fixed bin(24), fixed bin(35)); 7 27 dcl gtss_aft_$delete entry (char(8), fixed bin(24), fixed bin(35)); 7 28 dcl gtss_aft_$find entry (char(8), fixed bin(24), fixed bin(35)); 7 29 dcl gtss_aft_$initialize entry (fixed bin(35)); 7 30 dcl gtss_ascii_bcd_ entry (ptr, fixed bin, ptr); 7 31 dcl gtss_attributes_mgr_$get entry (ptr, fixed bin(35)); 7 32 dcl gtss_attributes_mgr_$set entry (ptr, fixed bin(35)); 7 33 dcl gtss_bcd_ascii_ entry (ptr, fixed bin(24), ptr); 7 34 dcl gtss_bcd_ascii_$lc entry (ptr, fixed bin(24), ptr); 7 35 dcl gtss_break_vector_ entry (); 7 36 dcl gtss_break_vector_$drl_in_progress entry() returns(bit(1)); 7 37 dcl gtss_break_vector_$status entry() returns(bit(1)); 7 38 dcl gtss_build_ entry options(variable); 7 39 dcl gtss_com_err_ entry options(variable); 7 40 dcl gtss_derail_processor_ entry (ptr, char(*), ptr, ptr, bit(1) aligned) /* called at fault time instead of signal_ */; 7 41 dcl gtss_derail_processor_$set entry options(variable); 7 42 dcl gtss_dq_$catp entry (char (5), ptr, fixed bin (18) unsigned); 7 43 dcl gtss_dq_$create entry (bit(1)); 7 44 dcl gtss_dq_$dibp entry (char(5), ptr); 7 45 dcl gtss_dq_$entries_info entry (ptr, fixed bin (18) unsigned, fixed bin (18) unsigned); 7 46 dcl gtss_dq_$hdrp entry (ptr); 7 47 dcl gtss_dq_$mod_js entry (char(5), fixed bin (6) unsigned, bit (1)); 7 48 dcl gtss_dq_$open_exc entry (bit(1)); 7 49 dcl gtss_dq_$open_gen entry (bit(1)); 7 50 dcl gtss_drl_abort_ entry (ptr, fixed bin); 7 51 dcl gtss_drl_addmem_ entry (ptr, fixed bin); 7 52 dcl gtss_drl_callss_ entry (ptr, fixed bin); 7 53 dcl gtss_drl_corfil_ entry (ptr, fixed bin); 7 54 dcl gtss_drl_defil_ entry (ptr, fixed bin); 7 55 dcl gtss_drl_defil_$subr entry (ptr, ptr, ptr); 7 56 dcl gtss_drl_dio_ entry (ptr, fixed bin); 7 57 dcl gtss_drl_drlimt_ entry (ptr, fixed bin); 7 58 dcl gtss_drl_drlsav_ entry (ptr, fixed bin); 7 59 dcl gtss_drl_filact_ entry (ptr, fixed bin); 7 60 dcl gtss_drl_filsp_ entry (ptr, fixed bin); 7 61 dcl gtss_drl_grow_ entry (ptr, fixed bin); 7 62 dcl gtss_drl_gwake_ entry (ptr, fixed bin); 7 63 dcl gtss_drl_jsts_ entry (ptr, fixed bin); 7 64 dcl gtss_drl_kin_ entry (ptr, fixed bin); 7 65 dcl gtss_drl_kotnow_ entry (ptr, fixed bin); 7 66 dcl gtss_drl_kotnow_$gtss_drl_kout_ entry (ptr, fixed bin); 7 67 dcl gtss_drl_koutn_ entry (ptr, fixed bin); 7 68 dcl gtss_drl_morlnk_ entry (ptr, fixed bin); 7 69 dcl gtss_drl_msub_ entry (ptr, fixed bin); 7 70 dcl gtss_drl_objtim_ entry (ptr, fixed bin); 7 71 dcl gtss_drl_part_ entry (ptr, fixed bin); 7 72 dcl gtss_drl_pasaft_ entry (ptr, fixed bin); 7 73 dcl gtss_drl_pasdes_ entry (ptr, fixed bin); 7 74 dcl gtss_drl_pasust_ entry (ptr, fixed bin); 7 75 dcl gtss_drl_pdio_ entry (ptr, fixed bin); 7 76 dcl gtss_drl_prgdes_ entry (ptr, fixed bin); 7 77 dcl gtss_drl_pseudo_ entry (ptr, fixed bin); 7 78 dcl gtss_drl_relmem_ entry (ptr, fixed bin); 7 79 dcl gtss_drl_restor_ entry (ptr, fixed bin); 7 80 dcl gtss_drl_retfil_ entry (ptr, fixed bin); 7 81 dcl gtss_drl_return_ entry (ptr, fixed bin); 7 82 dcl gtss_drl_rew_ entry (ptr, fixed bin); 7 83 dcl gtss_drl_rstswh_ entry (ptr, fixed bin); 7 84 dcl gtss_drl_setlno_ entry (ptr, fixed bin); 7 85 dcl gtss_drl_setswh_ entry (ptr, fixed bin); 7 86 dcl gtss_drl_snumb_ entry (ptr, fixed bin); 7 87 dcl gtss_drl_spawn_ entry (ptr, fixed bin); 7 88 dcl gtss_drl_spawn_$gtss_drl_pasflr_ entry (ptr, fixed bin); 7 89 dcl gtss_drl_stoppt_ entry (ptr, fixed bin); 7 90 dcl gtss_drl_switch_ entry (ptr, fixed bin); 7 91 dcl gtss_drl_sysret_ entry (ptr, fixed bin); 7 92 dcl gtss_drl_t_cfio_ entry (ptr, fixed bin); 7 93 dcl gtss_drl_t_cmov_ entry (ptr, fixed bin); 7 94 dcl gtss_drl_t_err_ entry (ptr, fixed bin); 7 95 dcl gtss_drl_t_goto_ entry (ptr, fixed bin); 7 96 dcl gtss_drl_t_linl_ entry (ptr, fixed bin); 7 97 dcl gtss_drl_t_rscc_ entry (ptr, fixed bin); 7 98 dcl gtss_drl_tapein_ entry (ptr, fixed bin); 7 99 dcl gtss_drl_task_ entry (ptr, fixed bin); 7 100 dcl gtss_drl_termtp_ entry (ptr, fixed bin); 7 101 dcl gtss_drl_time_ entry (ptr, fixed bin); 7 102 dcl gtss_drun_ entry (bit(1)); 7 103 dcl gtss_dsd_lookup_ entry (char(8) var) returns(fixed bin(24)); 7 104 dcl gtss_dsd_process_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 7 105 dcl gtss_edit_dsd_ entry (ptr, fixed bin(21)) returns(fixed bin(24)); 7 106 dcl gtss_mcfc_empty entry (char(*) var); 7 107 dcl gtss_expand_pathname_ entry (ptr, char(*), char(*), fixed bin(35)); 7 108 dcl gtss_expand_pathname_$verify_umc entry (ptr, char(*), char(*), bit(18), fixed bin(35)); 7 109 dcl gtss_fault_processor_ entry options(variable); 7 110 dcl gtss_find_cond_frame_ entry (char(32) var) returns(ptr); 7 111 dcl gtss_fault_processor_$timer_runout entry (ptr, char(*)); 7 112 dcl gtss_filact_error_status_ entry (fixed bin(35))returns(bit(12)); 7 113 dcl gtss_filact_funct02_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 114 dcl gtss_filact_funct03_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 115 dcl gtss_filact_funct04_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 116 dcl gtss_filact_funct05_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 117 dcl gtss_filact_funct08_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 118 dcl gtss_filact_funct10_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 119 dcl gtss_filact_funct11_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 120 dcl gtss_filact_funct14_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 121 dcl gtss_filact_funct18_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 122 dcl gtss_filact_funct19_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 123 dcl gtss_filact_funct21_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 124 dcl gtss_filact_funct22_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 7 125 dcl gtss_mcfc_init_ entry (char(*) var); 7 126 dcl gtss_interp_prim_ entry options(variable); 7 127 dcl gtss_interp_prim_$callss entry (char(4), ptr); 7 128 dcl gtss_interp_prim_$sysret entry options(variable); 7 129 dcl gtss_interp_prim_$t_goto entry (char(4)); 7 130 dcl gtss_ios_change_size_ entry (fixed bin(24), fixed bin(24), bit(1), fixed bin(24), fixed bin(35)); 7 131 dcl gtss_ios_close_ entry (fixed bin(24), ptr, fixed bin(35)); 7 132 dcl gtss_ios_exchange_names_ entry (fixed bin(24), fixed bin(24), fixed bin(24), fixed bin(35)); 7 133 dcl gtss_ios_initialize_ entry options(variable); 7 134 dcl gtss_ios_io_ entry (fixed bin(24), ptr, ptr, fixed bin(24), fixed bin(24), fixed bin(35)); 7 135 dcl gtss_ios_open_ entry (fixed bin(24), char(168), char(32), bit(6), bit(1), ptr, ptr, fixed bin(35)); 7 136 dcl gtss_ios_position_ entry (fixed bin(24), fixed bin(24), fixed bin(24), bit(6), ptr); 7 137 dcl gtss_mcfc_$delete entry (fixed bin(24), char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 7 138 dcl gtss_mcfc_$open entry (char(*), char(*), bit(6), bit(36) aligned, ptr, fixed bin(35)); 7 139 dcl gtss_mcfc_$close entry (char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 7 140 dcl gtss_read_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 7 141 dcl gtss_read_starCFP_$last_os entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 7 142 dcl gtss_run_subsystem_ entry (fixed bin(24)); 7 143 dcl gtss_run_subsystem_$finish entry options(variable); 7 144 dcl gtss_run_subsystem_$restor entry (fixed bin(24), ptr); 7 145 dcl gtss_run_subsystem_$restor_perm entry (fixed bin(24), ptr, fixed bin(18)); 7 146 dcl gtss_set_slave_ entry (fixed bin (24), ptr); 7 147 dcl gtss_set_slave_$load_bar entry (fixed bin (17)); 7 148 dcl gtss_update_safe_store_ entry (ptr); 7 149 dcl gtss_verify_access_ entry (char(*), char(*), fixed bin(24), bit(6), bit(12) aligned); 7 150 dcl gtss_verify_access_$check_forced_access entry (char(*), char(*), fixed bin(24)); 7 151 dcl gtss_write_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 7 152 /* END INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 370 371 end /* gtss_drl_tapein_ */; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1043.6 gtss_drl_tapein_.pl1 >spec>on>7105>gtss_drl_tapein_.pl1 358 1 09/09/83 1714.2 gtss_tapstar_.incl.pl1 >ldd>include>gtss_tapstar_.incl.pl1 360 2 09/09/83 1713.7 gtss_device_cmds.incl.pl1 >ldd>include>gtss_device_cmds.incl.pl1 362 3 09/09/83 1713.8 gtss_ext_.incl.pl1 >ldd>include>gtss_ext_.incl.pl1 364 4 12/15/83 1100.4 mc.incl.pl1 >ldd>include>mc.incl.pl1 366 5 09/09/83 1714.0 gtss_io_status_words.incl.pl1 >ldd>include>gtss_io_status_words.incl.pl1 368 6 09/09/83 1714.3 gtss_ust_ext_.incl.pl1 >ldd>include>gtss_ust_ext_.incl.pl1 370 7 12/10/84 1029.7 gtss_entry_dcls.incl.pl1 >spec>on>7105>gtss_entry_dcls.incl.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. BCW 14 000026 external static structure level 3 dcl 1-9 Count 0(30) 000026 external static fixed bin(6,0) level 4 packed unsigned unaligned dcl 1-9 set ref 56* DCW 11 000026 external static structure level 2 dcl 1-9 set ref 60 DCW_list_loc 1(18) 000026 external static bit(18) level 4 in structure "gtss_tapstar_$FILE" packed unaligned dcl 1-9 in procedure "gtss_drl_tapein_" set ref 59* DCW_list_loc 3(18) 000026 external static bit(18) level 4 in structure "gtss_tapstar_$FILE" packed unaligned dcl 1-9 in procedure "gtss_drl_tapein_" set ref 60* Device_Command 2 000026 external static bit(6) level 4 in structure "gtss_tapstar_$FILE" packed unaligned dcl 1-9 in procedure "gtss_drl_tapein_" set ref 58* Device_Command 000026 external static bit(6) level 4 in structure "gtss_tapstar_$FILE" packed unaligned dcl 1-9 in procedure "gtss_drl_tapein_" set ref 55* ID1 1 000026 external static structure level 3 dcl 1-9 ID2 3 000026 external static structure level 3 dcl 1-9 OP1 000026 external static structure level 3 dcl 1-9 OP2 2 000026 external static structure level 3 dcl 1-9 RETURN_WORD 4 000026 external static structure level 3 dcl 1-9 STATUS 7 000026 external static bit(72) level 2 packed unaligned dcl 1-9 set ref 62 Seek_Address 6 000026 external static fixed bin(35,0) level 2 dcl 1-9 set ref 61 261* Seek_Word 5 000026 external static structure level 2 dcl 1-9 set ref 59 Seek_count 5(18) 000026 external static fixed bin(18,0) level 3 packed unsigned unaligned dcl 1-9 set ref 63* Seek_loc 5 000026 external static bit(18) level 3 packed unaligned dcl 1-9 set ref 61* Status_loc 4 000026 external static bit(18) level 4 packed unaligned dcl 1-9 set ref 62* XOFF 001720 constant bit(9) initial unaligned dcl 356 ref 139 addrel builtin function dcl 288 ref 169 aft_tap_name 12 000026 external static char(8) level 2 dcl 1-9 set ref 64 65 66* b27 54(27) 000032 external static bit(1) level 4 packed unaligned dcl 6-16 set ref 256* b28 54(28) 000032 external static bit(1) level 4 packed unaligned dcl 6-16 set ref 257* bit12 000100 automatic bit(12) level 2 packed unaligned dcl 228 set ref 231 bytes_read 000121 automatic fixed bin(21,0) dcl 298 set ref 131* 139 140 147 161 167 code 000102 automatic fixed bin(35,0) dcl 291 set ref 42* 43 73* 80 80 82* 93* 99 100* 109* 115 116* 131* 152 153* 173* 179 180* 191* 197 198* 208* 212 213* 223* 240* 245 262* com_err_ 000034 constant entry external dcl 7-8 ref 82 100 116 153 180 198 213 232 271 error_table_$not_detached 000012 external static fixed bin(35,0) dcl 319 ref 80 fcb_loc 3 000026 external static bit(18) level 4 in structure "gtss_tapstar_$FILE" packed unaligned dcl 1-9 in procedure "gtss_drl_tapein_" set ref 65* fcb_loc 1 000026 external static bit(18) level 4 in structure "gtss_tapstar_$FILE" packed unaligned dcl 1-9 in procedure "gtss_drl_tapein_" set ref 64* file 14 000026 external static structure level 2 dcl 1-9 set ref 67 fms_status 000100 automatic structure level 1 dcl 228 set ref 223 223 232* fn 000103 automatic fixed bin(24,0) dcl 292 set ref 42* 223* 240* 262* frame_end 0(09) 000166 automatic char(1) level 2 packed unaligned dcl 315 set ref 91* 190* framing_chars 000166 automatic structure level 1 dcl 315 set ref 93 93 191 191 gtss_abort_subsystem_ 000036 constant entry external dcl 7-15 ref 44 246 gtss_aft_$delete 000040 constant entry external dcl 7-27 ref 240 gtss_aft_$find 000042 constant entry external dcl 7-28 ref 42 gtss_drl_kotnow_ 000044 constant entry external dcl 7-65 ref 39 gtss_ext_$ppt 000030 external static pointer dcl 3-94 set ref 73* 93* 109* 131* 173* 191* 208* gtss_fail 000104 stack reference condition dcl 293 ref 87 105 121 158 185 203 218 237 276 gtss_fix_tty_modes_ 000010 constant entry external dcl 294 ref 127 gtss_ios_close_ 000046 constant entry external dcl 7-131 ref 223 gtss_ios_io_ 000050 constant entry external dcl 7-134 ref 262 gtss_tapstar_$FILE 000026 external static structure level 1 dcl 1-9 set ref 54* gtss_ust 000032 external static structure level 2 dcl 6-16 gtss_ust_ext_$ust 000032 external static structure level 1 dcl 6-16 in_quit_state 000123 automatic bit(1) initial unaligned dcl 300 set ref 128* 222 300* increment parameter fixed bin(17,0) dcl 17 set ref 9 36* input_rec 1 based structure level 2 dcl 306 iox_$attach_name 000016 constant entry external dcl 328 ref 73 iox_$control 000020 constant entry external dcl 335 ref 93 191 iox_$detach_iocb 000024 constant entry external dcl 347 ref 208 iox_$get_chars 000014 constant entry external dcl 322 ref 131 iox_$modes 000022 constant entry external dcl 341 ref 109 173 lflg2 54 000032 external static structure level 3 dcl 6-16 local_seek_addr 000125 automatic fixed bin(35,0) dcl 302 set ref 69* 261 279* 279 m based fixed bin(18,0) level 3 packed unsigned unaligned dcl 306 set ref 147* 148 167* 168 169 mcp 000370 automatic pointer dcl 4-10 set ref 18* 39* 44* 246* mcpp parameter pointer dcl 16 ref 9 18 memory_loc 11 000026 external static bit(18) level 3 packed unaligned dcl 1-9 set ref 67* no_words 14 000026 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 1-9 set ref 70* 141 144* 144 162 165* 165 280* process_state 000122 automatic fixed bin(18,0) unsigned dcl 299 set ref 72* 90* 108* 125* 171 189 207 quit 000112 stack reference condition dcl 295 ref 126 253 254 rcw based structure level 2 dcl 306 set ref 145* 166* rec 1 based bit(9) array level 3 packed unaligned dcl 306 set ref 148* 168* records 15 000026 external static bit(36) array level 3 packed unaligned dcl 1-9 set ref 124 141 162 262 262 262 262 282 rel_block_ct 14(18) 000026 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 1-9 set ref 71* 281* 281 seek_cmd constant bit(6) initial unaligned dcl 2-6 ref 55 select_sequence 000026 external static structure level 2 dcl 1-9 set ref 262 262 262 262 size builtin function dcl 289 ref 169 status 000120 automatic fixed bin(24,0) dcl 297 set ref 262* 270 271* status_words_ptr 000372 automatic pointer initial dcl 5-12 set ref 5-12* tape_rec 000126 automatic bit(9) array unaligned dcl 304 set ref 131 131 131 131 139 148 168 tp 000164 automatic pointer dcl 305 set ref 124* 145 146 147 148 148 166 167 168 168 169* 169 169 169 282* tp_rec based structure level 1 dcl 306 set ref 169 tty_modes 000167 automatic char(256) unaligned dcl 320 set ref 109* 173* tty_modes_old 000267 automatic char(256) unaligned dcl 321 set ref 173* word_count 11(24) 000026 external static fixed bin(12,0) level 3 packed unsigned unaligned dcl 1-9 set ref 68* words_read 000124 automatic fixed bin(24,0) dcl 301 set ref 140* 141 144 161* 162 165 write_cmd constant bit(6) initial unaligned dcl 2-7 ref 58 y 0(34) based bit(1) level 3 packed unaligned dcl 306 set ref 146* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. abx internal static fixed bin(17,0) initial dcl 4-42 apx internal static fixed bin(17,0) initial dcl 4-42 arg_list based structure level 1 dcl 352 arg_list_ptr automatic pointer dcl 290 bbx internal static fixed bin(17,0) initial dcl 4-42 bpx internal static fixed bin(17,0) initial dcl 4-42 gseg automatic pointer dcl 296 gtss_CFP_abort_ 000000 constant entry external dcl 7-9 gtss_CFP_break_ 000000 constant entry external dcl 7-10 gtss_CFP_input_ 000000 constant entry external dcl 7-11 gtss_CFP_output_ 000000 constant entry external dcl 7-12 gtss_abandon_CFP_ 000000 constant entry external dcl 7-13 gtss_abort_dump_ 000000 constant entry external dcl 7-14 gtss_abort_subsystem_$not_imp 000000 constant entry external dcl 7-16 gtss_abs_$abs_equiv 000000 constant entry external dcl 7-19 gtss_abs_$cpu_runout 000000 constant entry external dcl 7-20 gtss_abs_$create_absin 000000 constant entry external dcl 7-21 gtss_abs_$dabt_check 000000 constant entry external dcl 7-22 gtss_abs_$get_drm 000000 constant entry external dcl 7-24 gtss_abs_$get_id 000000 constant entry external dcl 7-23 gtss_abs_login_banner_ 000000 constant entry external dcl 7-17 gtss_abs_logout_banner_ 000000 constant entry external dcl 7-18 gtss_adjust_size_ 000000 constant entry external dcl 7-25 gtss_aft_$add 000000 constant entry external dcl 7-26 gtss_aft_$initialize 000000 constant entry external dcl 7-29 gtss_ascii_bcd_ 000000 constant entry external dcl 7-30 gtss_attributes_mgr_$get 000000 constant entry external dcl 7-31 gtss_attributes_mgr_$set 000000 constant entry external dcl 7-32 gtss_bcd_ascii_ 000000 constant entry external dcl 7-33 gtss_bcd_ascii_$lc 000000 constant entry external dcl 7-34 gtss_break_vector_ 000000 constant entry external dcl 7-35 gtss_break_vector_$drl_in_progress 000000 constant entry external dcl 7-36 gtss_break_vector_$status 000000 constant entry external dcl 7-37 gtss_build_ 000000 constant entry external dcl 7-38 gtss_com_err_ 000000 constant entry external dcl 7-39 gtss_derail_processor_ 000000 constant entry external dcl 7-40 gtss_derail_processor_$set 000000 constant entry external dcl 7-41 gtss_dq_$catp 000000 constant entry external dcl 7-42 gtss_dq_$create 000000 constant entry external dcl 7-43 gtss_dq_$dibp 000000 constant entry external dcl 7-44 gtss_dq_$entries_info 000000 constant entry external dcl 7-45 gtss_dq_$hdrp 000000 constant entry external dcl 7-46 gtss_dq_$mod_js 000000 constant entry external dcl 7-47 gtss_dq_$open_exc 000000 constant entry external dcl 7-48 gtss_dq_$open_gen 000000 constant entry external dcl 7-49 gtss_drl_abort_ 000000 constant entry external dcl 7-50 gtss_drl_addmem_ 000000 constant entry external dcl 7-51 gtss_drl_callss_ 000000 constant entry external dcl 7-52 gtss_drl_corfil_ 000000 constant entry external dcl 7-53 gtss_drl_defil_ 000000 constant entry external dcl 7-54 gtss_drl_defil_$subr 000000 constant entry external dcl 7-55 gtss_drl_dio_ 000000 constant entry external dcl 7-56 gtss_drl_drlimt_ 000000 constant entry external dcl 7-57 gtss_drl_drlsav_ 000000 constant entry external dcl 7-58 gtss_drl_filact_ 000000 constant entry external dcl 7-59 gtss_drl_filsp_ 000000 constant entry external dcl 7-60 gtss_drl_grow_ 000000 constant entry external dcl 7-61 gtss_drl_gwake_ 000000 constant entry external dcl 7-62 gtss_drl_jsts_ 000000 constant entry external dcl 7-63 gtss_drl_kin_ 000000 constant entry external dcl 7-64 gtss_drl_kotnow_$gtss_drl_kout_ 000000 constant entry external dcl 7-66 gtss_drl_koutn_ 000000 constant entry external dcl 7-67 gtss_drl_morlnk_ 000000 constant entry external dcl 7-68 gtss_drl_msub_ 000000 constant entry external dcl 7-69 gtss_drl_objtim_ 000000 constant entry external dcl 7-70 gtss_drl_part_ 000000 constant entry external dcl 7-71 gtss_drl_pasaft_ 000000 constant entry external dcl 7-72 gtss_drl_pasdes_ 000000 constant entry external dcl 7-73 gtss_drl_pasust_ 000000 constant entry external dcl 7-74 gtss_drl_pdio_ 000000 constant entry external dcl 7-75 gtss_drl_prgdes_ 000000 constant entry external dcl 7-76 gtss_drl_pseudo_ 000000 constant entry external dcl 7-77 gtss_drl_relmem_ 000000 constant entry external dcl 7-78 gtss_drl_restor_ 000000 constant entry external dcl 7-79 gtss_drl_retfil_ 000000 constant entry external dcl 7-80 gtss_drl_return_ 000000 constant entry external dcl 7-81 gtss_drl_rew_ 000000 constant entry external dcl 7-82 gtss_drl_rstswh_ 000000 constant entry external dcl 7-83 gtss_drl_setlno_ 000000 constant entry external dcl 7-84 gtss_drl_setswh_ 000000 constant entry external dcl 7-85 gtss_drl_snumb_ 000000 constant entry external dcl 7-86 gtss_drl_spawn_ 000000 constant entry external dcl 7-87 gtss_drl_spawn_$gtss_drl_pasflr_ 000000 constant entry external dcl 7-88 gtss_drl_stoppt_ 000000 constant entry external dcl 7-89 gtss_drl_switch_ 000000 constant entry external dcl 7-90 gtss_drl_sysret_ 000000 constant entry external dcl 7-91 gtss_drl_t_cfio_ 000000 constant entry external dcl 7-92 gtss_drl_t_cmov_ 000000 constant entry external dcl 7-93 gtss_drl_t_err_ 000000 constant entry external dcl 7-94 gtss_drl_t_goto_ 000000 constant entry external dcl 7-95 gtss_drl_t_linl_ 000000 constant entry external dcl 7-96 gtss_drl_t_rscc_ 000000 constant entry external dcl 7-97 gtss_drl_tapein_ 000000 constant entry external dcl 7-98 gtss_drl_task_ 000000 constant entry external dcl 7-99 gtss_drl_termtp_ 000000 constant entry external dcl 7-100 gtss_drl_time_ 000000 constant entry external dcl 7-101 gtss_drun_ 000000 constant entry external dcl 7-102 gtss_dsd_lookup_ 000000 constant entry external dcl 7-103 gtss_dsd_process_ 000000 constant entry external dcl 7-104 gtss_edit_dsd_ 000000 constant entry external dcl 7-105 gtss_expand_pathname_ 000000 constant entry external dcl 7-107 gtss_expand_pathname_$verify_umc 000000 constant entry external dcl 7-108 gtss_ext_$CFP_bits external static structure level 1 dcl 3-37 gtss_ext_$SYstarstar_file_no external static fixed bin(24,0) dcl 3-33 gtss_ext_$aem external static fixed bin(17,0) dcl 3-8 gtss_ext_$aft external static structure level 1 dcl 3-78 gtss_ext_$bad_drl_rtrn external static label variable dcl 3-9 gtss_ext_$com_reg external static structure level 1 dcl 3-45 gtss_ext_$db external static bit(1) array unaligned dcl 3-10 gtss_ext_$deferred_catalogs_ptr external static pointer dcl 3-11 gtss_ext_$dispose_of_drl external static label variable dcl 3-12 gtss_ext_$drl_rtrn external static label variable array dcl 3-13 gtss_ext_$drm_path external static char(168) unaligned dcl 3-14 gtss_ext_$drun_jid external static char(5) unaligned dcl 3-15 gtss_ext_$event_channel external static fixed bin(71,0) dcl 3-16 gtss_ext_$fast_lib external static structure level 1 dcl 3-98 gtss_ext_$finished external static label variable dcl 3-17 gtss_ext_$flags external static structure level 1 dcl 3-60 gtss_ext_$gdb_name external static char(8) unaligned dcl 3-18 gtss_ext_$get_line external static entry variable dcl 3-19 gtss_ext_$gtss_slave_area_seg external static pointer array dcl 3-20 gtss_ext_$hcs_work_area_ptr external static pointer dcl 3-21 gtss_ext_$homedir external static char(64) unaligned dcl 3-22 gtss_ext_$last_k_was_out external static bit(1) dcl 3-23 gtss_ext_$mcfc external static structure level 1 dcl 3-109 gtss_ext_$pdir external static varying char(168) dcl 3-24 gtss_ext_$popup_from_pi external static label variable dcl 3-25 gtss_ext_$process_type external static fixed bin(17,0) dcl 3-26 gtss_ext_$put_chars external static entry variable dcl 3-27 gtss_ext_$restart_from_pi external static label variable dcl 3-28 gtss_ext_$restart_seg_ptr external static pointer dcl 3-29 gtss_ext_$sig_ptr external static pointer dcl 3-30 gtss_ext_$stack_level_ external static fixed bin(17,0) dcl 3-31 gtss_ext_$statistics external static structure level 1 dcl 3-72 gtss_ext_$suspended_process external static bit(1) unaligned dcl 3-32 gtss_ext_$user_id external static varying char(26) dcl 3-34 gtss_ext_$work_area_ptr external static pointer dcl 3-35 gtss_fault_processor_ 000000 constant entry external dcl 7-109 gtss_fault_processor_$timer_runout 000000 constant entry external dcl 7-111 gtss_filact_error_status_ 000000 constant entry external dcl 7-112 gtss_filact_funct02_ 000000 constant entry external dcl 7-113 gtss_filact_funct03_ 000000 constant entry external dcl 7-114 gtss_filact_funct04_ 000000 constant entry external dcl 7-115 gtss_filact_funct05_ 000000 constant entry external dcl 7-116 gtss_filact_funct08_ 000000 constant entry external dcl 7-117 gtss_filact_funct10_ 000000 constant entry external dcl 7-118 gtss_filact_funct11_ 000000 constant entry external dcl 7-119 gtss_filact_funct14_ 000000 constant entry external dcl 7-120 gtss_filact_funct18_ 000000 constant entry external dcl 7-121 gtss_filact_funct19_ 000000 constant entry external dcl 7-122 gtss_filact_funct21_ 000000 constant entry external dcl 7-123 gtss_filact_funct22_ 000000 constant entry external dcl 7-124 gtss_find_cond_frame_ 000000 constant entry external dcl 7-110 gtss_interp_prim_ 000000 constant entry external dcl 7-126 gtss_interp_prim_$callss 000000 constant entry external dcl 7-127 gtss_interp_prim_$sysret 000000 constant entry external dcl 7-128 gtss_interp_prim_$t_goto 000000 constant entry external dcl 7-129 gtss_ios_change_size_ 000000 constant entry external dcl 7-130 gtss_ios_exchange_names_ 000000 constant entry external dcl 7-132 gtss_ios_initialize_ 000000 constant entry external dcl 7-133 gtss_ios_open_ 000000 constant entry external dcl 7-135 gtss_ios_position_ 000000 constant entry external dcl 7-136 gtss_mcfc_$close 000000 constant entry external dcl 7-139 gtss_mcfc_$delete 000000 constant entry external dcl 7-137 gtss_mcfc_$open 000000 constant entry external dcl 7-138 gtss_mcfc_empty 000000 constant entry external dcl 7-106 gtss_mcfc_init_ 000000 constant entry external dcl 7-125 gtss_read_starCFP_ 000000 constant entry external dcl 7-140 gtss_read_starCFP_$last_os 000000 constant entry external dcl 7-141 gtss_run_subsystem_ 000000 constant entry external dcl 7-142 gtss_run_subsystem_$finish 000000 constant entry external dcl 7-143 gtss_run_subsystem_$restor 000000 constant entry external dcl 7-144 gtss_run_subsystem_$restor_perm 000000 constant entry external dcl 7-145 gtss_set_slave_ 000000 constant entry external dcl 7-146 gtss_set_slave_$load_bar 000000 constant entry external dcl 7-147 gtss_update_safe_store_ 000000 constant entry external dcl 7-148 gtss_verify_access_ 000000 constant entry external dcl 7-149 gtss_verify_access_$check_forced_access 000000 constant entry external dcl 7-150 gtss_write_starCFP_ 000000 constant entry external dcl 7-151 i automatic fixed bin(18,0) dcl 303 iox_$user_input external static pointer dcl 318 lbx internal static fixed bin(17,0) initial dcl 4-42 lpx internal static fixed bin(17,0) initial dcl 4-42 mc based structure level 1 dcl 4-12 read_cmd internal static bit(6) initial unaligned dcl 2-5 sbx internal static fixed bin(17,0) initial dcl 4-42 scu based structure level 1 dcl 4-56 scup automatic pointer dcl 4-54 scux based structure level 1 dcl 4-207 spx internal static fixed bin(17,0) initial dcl 4-42 status_words based structure level 1 dcl 5-13 NAMES DECLARED BY EXPLICIT CONTEXT. get_chars 000773 constant label dcl 131 ref 170 gtss_drl_tapein_ 000255 constant entry external dcl 9 quit_get_chars 001177 constant label dcl 171 ref 129 150 write_tape 001605 constant entry internal dcl 260 ref 141 149 162 NAMES DECLARED BY CONTEXT OR IMPLICATION. addr builtin function ref 59 60 61 62 64 65 67 93 93 124 131 131 191 191 223 223 262 262 262 262 262 262 282 divide builtin function ref 140 161 fixed builtin function ref 262 262 hbound builtin function ref 131 131 141 162 262 262 null builtin function ref 73 73 5-12 rel builtin function ref 59 60 61 62 64 65 67 262 262 string builtin function set ref 148 148 168* 168 unspec builtin function set ref 54 145* 166* STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 2150 2222 1721 2160 Length 2572 1721 52 334 226 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME gtss_drl_tapein_ 378 external procedure is an external procedure. on unit on line 126 64 on unit write_tape internal procedure shares stack frame of external procedure gtss_drl_tapein_. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME gtss_drl_tapein_ 000100 fms_status gtss_drl_tapein_ 000102 code gtss_drl_tapein_ 000103 fn gtss_drl_tapein_ 000120 status gtss_drl_tapein_ 000121 bytes_read gtss_drl_tapein_ 000122 process_state gtss_drl_tapein_ 000123 in_quit_state gtss_drl_tapein_ 000124 words_read gtss_drl_tapein_ 000125 local_seek_addr gtss_drl_tapein_ 000126 tape_rec gtss_drl_tapein_ 000164 tp gtss_drl_tapein_ 000166 framing_chars gtss_drl_tapein_ 000167 tty_modes gtss_drl_tapein_ 000267 tty_modes_old gtss_drl_tapein_ 000370 mcp gtss_drl_tapein_ 000372 status_words_ptr gtss_drl_tapein_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return tra_ext signal enable ext_entry int_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_ gtss_abort_subsystem_ gtss_aft_$delete gtss_aft_$find gtss_drl_kotnow_ gtss_fix_tty_modes_ gtss_ios_close_ gtss_ios_io_ iox_$attach_name iox_$control iox_$detach_iocb iox_$get_chars iox_$modes THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. error_table_$not_detached gtss_ext_$ppt gtss_tapstar_$FILE gtss_ust_ext_$ust LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 9 000251 300 000262 5 12 000263 18 000265 36 000271 39 000273 42 000304 43 000321 44 000323 54 000360 55 000365 56 000370 58 000373 59 000376 60 000402 61 000406 62 000411 63 000416 64 000420 65 000425 66 000427 67 000432 68 000435 69 000437 70 000440 71 000442 72 000444 73 000445 80 000511 82 000516 87 000545 88 000550 90 000551 91 000553 93 000555 99 000611 100 000613 105 000643 106 000646 108 000647 109 000651 115 000701 116 000703 121 000733 122 000736 124 000737 125 000743 126 000745 127 000761 128 000765 129 000770 131 000773 139 001016 140 001024 141 001031 144 001041 145 001050 146 001051 147 001053 148 001057 149 001066 150 001067 152 001070 153 001072 158 001125 159 001130 161 001131 162 001136 165 001146 166 001155 167 001156 168 001162 169 001171 170 001176 171 001177 173 001202 179 001226 180 001230 185 001260 186 001263 189 001264 190 001267 191 001271 197 001325 198 001327 203 001357 204 001362 207 001363 208 001365 212 001376 213 001400 218 001430 219 001433 222 001434 223 001436 231 001453 232 001457 237 001507 238 001512 240 001513 245 001530 246 001532 253 001572 254 001573 256 001576 257 001602 258 001604 260 001605 261 001606 262 001612 270 001643 271 001645 276 001675 277 001700 279 001701 280 001705 281 001711 282 001715 283 001717 ----------------------------------------------------------- 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