COMPILATION LISTING OF SEGMENT gtss_CFP_input_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1217.8 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * * 4* * Copyright, (C) Honeywell Information Systems Inc., 1981 * 5* * * 6* * * 7* *********************************************************** */ 8 9 gtss_CFP_input_: proc (up, bp, ml, rl, ec); 10 11 /** This program is called to do all input when doing 12* CRUN/DRUN processing. Depending on the modes in 13* effect as a result of processing $*$ requests, the 14* appropriate input/output actions are performed. 15* 16* Author: Al Dupuis 05/05/79. 17* Changed: Ron Barstad 83-03-31 fixed length of output substr in debug to rl, was rl-1 18***/ 19 20 dcl up ptr parm; /** (input) iocb ptr **/ 21 dcl bp ptr parm; /** (input) points to callers buffer **/ 22 dcl ml fixed bin (21) parm; /** (input) buffer length **/ 23 dcl rl fixed bin (21) parm; /** (output) number of characters returned **/ 24 dcl ec fixed bin (35) parm; /** (output) Multics error code **/ 25 26 /** 27* ACTION MEANING 28* 29* action-1 terminal read 30* action_2 terminal read, terminal write 31* action_3 terminal read, *CFP write 32* action_4 terminal read, terminal write, *CFP write 33* 34* action_5 *CFP read 35* action_6 *CFP read, terminal write 36* action_7 *CFP read, *CFP write 37* action_8 *CFP read, terminal write, *CFP write 38* 39* 40* EXCLUDE DELE_ON COPY_ON TALK_ON ACTION 41* 42* 0 0 0 0 action_7 43* 0 0 0 1 action_3 44* 0 0 1 0 action_8 45* 0 0 1 1 action_3 46* 0 1 0 0 action_5 47* 0 1 0 1 action_1 48* 0 1 1 0 action_6 49* 0 1 1 1 action_2 50* 1 0 0 0 action_5 51* 1 0 0 1 action_1 52* 1 0 1 0 action_6 53* 1 0 1 1 action_1 54* 1 1 0 0 action_5 55* 1 1 0 1 action_1 56* 1 1 1 0 action_6 57* 1 1 1 1 action_2 58* 59***/ 60 61 no_input_yet = "1"b; 62 63 /** Obtain the input line from terminal or current *CFP file, 64* and do any special processing requested by $*$ cards 65***/ 66 67 68 do while (no_input_yet); 69 70 71 if gtss_starCF_$FILE.cf.first_time = "1"b 72 then call set_exclude; /* done once for each new *CFP file */ 73 else; 74 rtn_bits = gtss_starCF_$FILE.cf.exclude_on || dele_on || copy_on || talk_on; 75 proper_rtn = rtn_table (fixed (rtn_bits, 4)); 76 call proper_rtn; 77 if db_CFP_input then call ioa_ ( 78 "input sector no was (^d)" 79 || " no of chars read was (^d)" 80 || "^/chars read were (^a)", 81 gtss_ust.lcfio.sect_in - 1, 82 rl, 83 substr (RECORD.chars, 1, rl)); 84 85 if rl >= 4 then 86 if ((substr (bp -> string, 1, 4) = "cpos") | /* have to set this bit so that */ 87 (substr (bp -> string, 1, 4) = "CPOS")) then /* drl_t_cfio_ won't start a new *CFP file */ 88 cpos_called = "1"b; 89 90 if rl >= 3 then /* if drun execution in progress, check for last cmnd */ 91 if gtss_ust.lcjid ^= "0"b then 92 if ((substr (bp -> string, 1, 3) = "bye") 93 | (substr (bp -> string, 1, 3) = "BYE")) 94 | (gtss_ust.lcfio.sect_in ^< gtss_ust.lcfst.initial_sect_out) 95 then call end_of_drun; 96 97 if CFP_in_progress then /* gtss_read_starCFP_ may have exhausted input */ 98 if rl > 3 then 99 if (index (bp -> string, "$*$") ^= 0) then do; 100 if substr (bp -> string, rl, 1) = CR then substr (bp -> string, rl, 1) = NL; 101 call gtss_dsd_process_ (up, bp, ml, rl, ec); /* special processing of line */ 102 end; 103 else no_input_yet = "0"b; /* does not contain $*$ */ 104 else no_input_yet = "0"b; /* not long enough for $*$ line */ 105 else no_input_yet = "0"b; /* all *CFP input exhausted */ 106 107 end; 108 109 110 action_1: proc; 111 112 call iox_$get_line (iox_$user_input, bp, ml, rl, ec); 113 if ec = error_table_$long_record 114 then call long_line; 115 116 end /* action_1 */; 117 118 119 120 action_2: proc; 121 122 call iox_$get_line (iox_$user_input, bp, ml, rl, ec); 123 if ec = error_table_$long_record 124 then call long_line; 125 if ec = 0 then call iox_$put_chars (iox_$user_output, bp, rl, code); 126 if code ^= 0 then call bug_complaint; 127 128 end /* action_2 */; 129 130 131 132 action_3: proc; 133 134 call iox_$get_line (iox_$user_input, bp, ml, rl, ec); 135 if ec = error_table_$long_record 136 then call long_line; 137 if ec = 0 then do; 138 i = gtss_edit_dsd_ (bp, rl); /* does line go to *CFP */ 139 if i = 0 then call gtss_write_starCFP_ (up, bp, rl, code); /* yes */ 140 end; 141 if code ^= 0 then call bug_complaint; 142 143 end /* action_3 */; 144 145 146 147 /** NOT USED AT THIS TIME 148*action_4: proc; 149* 150* call iox_$get_line (iox_$user_input, bp, ml, rl, ec); 151* if ec = error_table_$long_record 152* then call long_line; 153* if ec = 0 then call iox_$put_chars (iox_$user_output, bp, rl, code); 154* if code = 0 then do; 155* i = gtss_edit_dsd_ (bp, rl); 156* if i = 0 then call gtss_write_starCFP_ (up, bp, rl, code); 157* end; 158* if code ^= 0 then call bug_complaint; 159* 160* end; 161**/ 162 163 164 action_5: proc; 165 166 call gtss_read_starCFP_ (up, bp, ml, rl, ec); 167 168 end /* action_5 */; 169 170 171 172 action_6: proc; 173 174 call gtss_read_starCFP_ (up, bp, ml, rl, ec); 175 if ec = 0 then call iox_$put_chars (iox_$user_output, bp, rl, code); 176 if code ^= 0 then call bug_complaint; 177 178 end /* action_6 */; 179 180 181 182 action_7: proc; 183 184 call gtss_read_starCFP_ (up, bp, ml, rl, ec); 185 if ec = 0 then do; 186 i = gtss_edit_dsd_ (bp, rl); /* does line go to *CFP */ 187 if i = 0 then call gtss_write_starCFP_ (up, bp, rl, code); /* yes */ 188 end; 189 if code ^= 0 then call bug_complaint; 190 191 end /* action_7 */; 192 193 194 195 action_8: proc; 196 197 call gtss_read_starCFP_ (up, bp, ml, rl, ec); 198 if ec = 0 then call iox_$put_chars (iox_$user_output, bp, rl, code); 199 if code = 0 then do; 200 i = gtss_edit_dsd_ (bp, rl); /* does line go to *CFP */ 201 if i = 0 then call gtss_write_starCFP_ (up, bp, rl, code); /* yes */ 202 end; 203 if code ^= 0 then call bug_complaint; 204 205 end /* action_8 */; 206 207 208 bug_complaint: proc; 209 210 gtss_ust.lcfst.start_term = 2; 211 call gtss_abort_subsystem_ ( 212 gtss_find_cond_frame_ ("derail"), 213 "gtss_CFP_input", 214 0, 215 "Encountered a bad i/o to terminal or *CFP." 216 ); 217 return; 218 end /* bug_complaint */; 219 220 221 222 set_exclude: proc; 223 224 gtss_starCF_$FILE.cf.first_time = "0"b; 225 gtss_starCF_$FILE.Seek_Address = gtss_ust.lcfst.initial_sect_out - 1; 226 gtss_starCF_$FILE.OP2.Device_Command = read_cmd; 227 fn = gtss_starCF_$FILE.cf.aft_indx; 228 call gtss_ios_io_ ( /* read the cout sector from *CFP */ 229 fn, 230 addr (select_sequence), 231 addr (select_sequence), 232 fixed (rel (addr (gtss_starCF_$FILE.cf))), 233 status, 234 code); 235 if status ^= 0 then do; 236 call com_err_ (code, "gtss_CFP_input_$set_exclude", 237 "Unable to read cout sector (status ^i)", status); 238 call bug_complaint; 239 return; 240 end; 241 242 dib_ptr = addr (no_characters); /* DIB description--DB84 page 16-22 */ 243 if dib_ptr -> dq_dib.dbflg.f_exc = "1"b then 244 gtss_starCF_$FILE.cf.exclude_on = "1"b; 245 else gtss_starCF_$FILE.cf.exclude_on = "0"b; 246 247 end; /* set_exclude */ 248 249 250 251 long_line: proc; 252 253 attempts = 1; 254 do while (attempts < 6); 255 if ec = error_table_$long_record then do; 256 call com_err_ (0, "", "RETRANSMIT LAST LINE"); 257 call iox_$control (up, "resetread", null (), ec); 258 call iox_$get_line (iox_$user_input, bp, ml, rl, ec); 259 attempts = attempts + 1; 260 end; 261 else return; 262 end; 263 264 rl = 0; 265 266 end; /* long_line */ 267 268 end_of_drun: proc; 269 270 271 buffer = gtss_abs_logout_banner_ (); /* banner is 2 lines */ 272 nl_indx = index (buffer, NL); 273 rl = (nl_indx - 1) + 4; 274 bp -> string = 275 CR || NL || substr (buffer, 1, nl_indx - 1) || CR || NL; 276 call gtss_write_starCFP_ (up, bp, rl, code); 277 if code = 0 then do; 278 rl = length (buffer) - nl_indx + 2; 279 bp -> string = substr (buffer, nl_indx + 1) || CR || NL; 280 call gtss_write_starCFP_ (up, bp, rl, code); 281 if code = 0 then do; /* read the cout sector */ 282 gtss_ust.lcfio.sect_in = gtss_ust.lcfst.initial_sect_out - 1; 283 call gtss_read_starCFP_ (up, bp, ml, rl, ec); 284 end; 285 end; 286 287 if code ^= 0 then call bug_complaint; 288 289 dcl buffer char (300) varying; 290 dcl nl_indx fixed bin (24); 291 292 end; /* end_of_drun */ 293 294 /** 295*Variables for gtss_CFP_input_ 296***/ 297 298 299 dcl NL char(1)static int options(constant) init(" 300 "); 301 302 dcl CR char(1)static int options(constant) init(" "); 303 dcl (i, l, fn, status, attempts, l_idx) fixed bin (24); 304 dcl code fixed bin (35) init (0); 305 dcl string char (rl) based (bp); 306 dcl (fixed, null, substr) builtin; 307 dcl ioa_ entry options (variable); 308 dcl iox_$get_line entry (ptr, ptr, fixed bin (21), fixed bin (21), fixed bin (35)); 309 dcl iox_$put_chars entry (ptr, ptr, fixed bin (21), fixed bin (35)); 310 dcl iox_$control entry (ptr, char (*), ptr, fixed bin (35)); 311 dcl iox_$user_input ptr ext; 312 dcl iox_$user_output ptr ext; 313 dcl gtss_fail condition ext; 314 dcl error_table_$long_record fixed bin (35) external; 315 316 dcl proper_rtn entry int variable; 317 dcl rtn_table (0:15) entry init ( 318 action_7, 319 action_3, 320 action_8, 321 action_3, 322 action_5, 323 action_1, 324 action_6, 325 action_2, 326 action_5, 327 action_1, 328 action_6, 329 action_1, 330 action_5, 331 action_1, 332 action_6, 333 action_2); 334 335 dcl dib_ptr ptr init (null()); 336 1 1 /* BEGIN INCLUDE FILE gtss_CFP_bits.incl.pl1 */ 1 2 /* 1 3* Created: (Dupuis Multics) 05/08/79 1031.7 mst Tue 1 4**/ 1 5 1 6 1 7 dcl CFP_in_progress bit (1) unaligned defined lflg2.b8; 1 8 dcl dele_on bit (1) unaligned defined lflg2.b0; 1 9 dcl copy_on bit (1) unaligned defined lflg2.b1; 1 10 dcl talk_on bit (1) unaligned defined lflg2.b4; 1 11 dcl user_code bit (1) unaligned defined lflg2.b14; 1 12 dcl trap_off bit (1) unaligned defined lswt2.b5; 1 13 dcl break_flag bit (1) unaligned defined lflg3.b31; 1 14 1 15 1 16 /* END INCLUDE FILE gtss_CFP_bits.incl.pl1 */ 337 338 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 */ 339 340 3 1 /* BEGIN INCLUDE FILE gtss_starCF_.incl.pl1 */ 3 2 /* 3 3* Created: (Wardd Multics) 03/20/79 1816.6 mst Tue 3 4**/ 3 5 3 6 /* 3 7* gtss_CFP_input_ data structure to provide 3 8* for accessing the current command file. 3 9* 3 10* Changed: Al Dupuis 05/17/79 to get rid of nested get_line, put_chars concept. 3 11**/ 3 12 dcl 1 gtss_starCF_$FILE aligned static ext 3 13 , 3 select_sequence 3 14 , 4 OP1 /* Seek operation. */ 3 15 , 5 Device_Command bit(06)unal 3 16 , 5 zeroes_1 fixed bin(12)unsigned unal 3 17 , 5 IOC_Command bit(05)unal 3 18 , 5 zeroes_2 fixed bin(01)unsigned unal 3 19 , 5 Control fixed bin(06)unsigned unal 3 20 , 5 Count fixed bin(06)unsigned unal 3 21 3 22 , 4 ID1 3 23 , 5 fcb_loc bit(18)unal 3 24 , 5 DCW_list_loc bit(18)unal 3 25 3 26 , 4 OP2 /* Write opteration. */ 3 27 , 5 Device_Command bit(06)unal 3 28 , 5 zeroes_1 fixed bin(12)unsigned unal 3 29 , 5 IOC_Command bit(05)unal 3 30 , 5 zeroes_2 fixed bin(01)unsigned unal 3 31 , 5 Control fixed bin(06)unsigned unal 3 32 , 5 Count fixed bin(06)unsigned unal 3 33 3 34 , 4 ID2 3 35 , 5 fcb_loc bit(18)unal 3 36 , 5 DCW_list_loc bit(18)unal 3 37 3 38 , 4 RETURN_WORD 3 39 , 5 Status_loc bit(18)unal 3 40 , 5 Courtesy_Call_loc bit(18)unal 3 41 3 42 , 3 Seek_Word 3 43 , 4 Seek_loc bit(18)unal 3 44 , 4 Seek_count fixed bin(18)unsigned unal 3 45 , 3 Seek_Address fixed bin(35) 3 46 , 3 STATUS bit(72) unal 3 47 3 48 , 3 DCW 3 49 , 4 memory_loc bit(18)unal 3 50 , 4 zeroes_3 fixed bin(03)unsigned unal 3 51 , 4 action_code fixed bin(03)unsigned unal 3 52 , 4 word_count fixed bin(12)unsigned unal 3 53 3 54 , 3 RECORD 3 55 , 4 no_characters fixed bin(18)unsigned unal 3 56 , 4 zeroes_4 bit(18)unal 3 57 , 4 chars char(252) 3 58 3 59 /* Stack to accomodate nested command file processing. */ 3 60 , 3 cf 3 61 , 4 top fixed bin(24) 3 62 , 4 aft_indx fixed bin(24) 3 63 , 4 first_time bit (1) unaligned 3 64 , 4 exclude_on bit (1) unaligned 3 65 ; 3 66 3 67 /* END INCLUDE FILE gtss_starCF_.incl.pl1 */ 341 342 4 1 /* BEGIN INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 4 2 /* UST: User Status Table 4 3* definitions based on 4 4* System Tables, Order number DD14-01E, January 1981 4 5* Section 15, Time Sharing System 4 6* 4 7* Authors: Robert J. Grimes Created 4 8* - Albert N. Kepner 1978 4 9* - Robert M. May 4 10* - David B. Ward 4 11* Change: Dave Ward 02/23/79 Level 4 numbering. 4 12* Change: Ron Barstad 83-07-12 Repaired damaged formating and word offset comments 4 13* Brought up to 4JS3 functionality 4 14**/ 4 15 /* octal word offsets of entries */ 4 16 dcl 1 gtss_ust_ext_$ust aligned ext, 4 17 3 gtss_ust, 4 18 /* 0-1 */ 4 lid bit (72), 4 19 /* 2 */ 4 lstp bit (36), 4 20 /* 3 */ 4 ltin bit (36), 4 21 /* 4 */ 4 lstio, 4 22 5 no_of_chars_by_8 fixed bin (18) uns unal, 4 23 5 no_of_disk_io fixed bin (18) uns unal, 4 24 /* 5 */ 4 lsnub bit (36), 4 25 /* 6-7 */ 4 lchg bit (72), 4 26 /* 10 */ 4 lbuf, 4 27 5 address bit (18)unaligned, 4 28 5 tally bit (1)unaligned, 4 29 5 terminal_type bit (5)unaligned, 4 30 5 station_id bit (12)unaligned, 4 31 /* 11-12 */ 4 liost (0:1) bit (36), 4 32 /* 13 */ 4 lcc bit (36), 4 33 /* 14 */ 4 lback, 4 34 5 fill1 bit (18) unaligned, 4 35 5 gwake fixed bin (17) unaligned, 4 36 /* 15 */ 4 lflag, 4 37 5 mp_list bit (18) unaligned, 4 38 5 flags unaligned, 4 39 6 b18 bit (1) unaligned, 4 40 6 b19 bit (1) unaligned, 4 41 6 b20 bit (1) unaligned, 4 42 6 b21 bit (1) unaligned, 4 43 6 b22 bit (1) unaligned, 4 44 6 b23 bit (1) unaligned, 4 45 6 b24 bit (1) unaligned, 4 46 6 b25 bit (1) unaligned, 4 47 6 b26 bit (1) unaligned, 4 48 6 b27 bit (1) unaligned, 4 49 6 b28 bit (1) unaligned, 4 50 6 b29 bit (1) unaligned, 4 51 6 b30 bit (1) unaligned, 4 52 6 b31 bit (1) unaligned, 4 53 6 b32 bit (1) unaligned, 4 54 6 b33 bit (1) unaligned, 4 55 6 b34 bit (1) unaligned, 4 56 6 b35 bit (1) unaligned, 4 57 /* 16 */ 4 lkdss bit (36), 4 58 /* 17 */ 4 lfile, 4 59 5 program_stack fixed bin (17) unal, 4 60 5 file_list_ptr bit (18) unal, 4 61 /* 20 */ 4 lttys bit (36), 4 62 /* 21 */ 4 lswth, 4 63 5 b0 bit (1) unaligned, 4 64 5 b1 bit (1) unaligned, 4 65 5 b2 bit (1) unaligned, 4 66 5 b3 bit (1) unaligned, 4 67 5 b4 bit (1) unaligned, 4 68 5 b5 bit (1) unaligned, 4 69 5 b6 bit (1) unaligned, 4 70 5 b7 bit (1) unaligned, 4 71 5 b8 bit (1) unaligned, 4 72 5 b9 bit (1) unaligned, 4 73 5 b10 bit (1) unaligned, 4 74 5 b11 bit (1) unaligned, 4 75 5 b12 bit (1) unaligned, 4 76 5 b13 bit (1) unaligned, 4 77 5 b14 bit (1) unaligned, 4 78 5 b15 bit (1) unaligned, 4 79 5 b16 bit (1) unaligned, 4 80 5 b17 bit (1) unaligned, 4 81 5 b18 bit (1) unaligned, 4 82 5 b19 bit (1) unaligned, 4 83 5 b20 bit (1) unaligned, 4 84 5 b21 bit (1) unaligned, 4 85 5 b22 bit (1) unaligned, 4 86 5 b23 bit (1) unaligned, 4 87 5 b24 bit (1) unaligned, 4 88 5 b25 bit (1) unaligned, 4 89 5 b26 bit (1) unaligned, 4 90 5 b27 bit (1) unaligned, 4 91 5 b28 bit (1) unaligned, 4 92 5 b29 bit (1) unaligned, 4 93 5 b30 bit (1) unaligned, 4 94 5 b31 bit (1) unaligned, 4 95 5 b32 bit (1) unaligned, 4 96 5 b33 bit (1) unaligned, 4 97 5 b34 bit (1) unaligned, 4 98 5 b35 bit (1) unaligned, 4 99 /* 22 */ 4 lsize, 4 100 5 bar fixed bin (17) unaligned, 4 101 5 limit bit (18) unaligned, 4 102 /* 23... */ 4 lswap, 4 103 5 fill bit (18) unal, 4 104 5 size bit (18) unal, 4 105 /* ...24 */ 4 transfer_cell bit (36) unal, 4 106 /* 25 */ 4 lerrm bit (36), 4 107 /* 26-37 */ 4 lcfil (0:9) bit (36), 4 108 /* 40 */ 4 lsybc, 4 109 5 b0_17 fixed bin (17) unaligned, 4 110 5 b18_35 fixed bin (17) unaligned, 4 111 /* 41-42 */ 4 lstem (0:1) bit (36), 4 112 /* 43 */ 4 lcals, 4 113 5 b0_17 fixed bin (17) unaligned, 4 114 5 b18_35 bit (18) unaligned, 4 115 /* 44-51 */ 4 subsystems (3), 4 116 5 content_lswap, 4 117 6 fill bit (18) unal, 4 118 6 size bit (18) unal, 4 119 5 tally_address fixed bin (17) unaligned, 4 120 5 ss_flags bit (18) unaligned, 4 121 /* 52 */ 4 ltalc, 4 122 5 tod fixed bin (17) unaligned, 4 123 5 startup fixed bin (17) unaligned, 4 124 /* 53 */ 4 lspts fixed bin (35), 4 125 /* 54 */ 4 lflg2, 4 126 5 b0 bit (1) unaligned, 4 127 5 b1 bit (1) unaligned, 4 128 5 b2 bit (1) unaligned, 4 129 5 b3 bit (1) unaligned, 4 130 5 b4 bit (1) unaligned, 4 131 5 b5 bit (1) unaligned, 4 132 5 b6 bit (1) unaligned, 4 133 5 b7 bit (1) unaligned, 4 134 5 b8 bit (1) unaligned, 4 135 5 b9 bit (1) unaligned, 4 136 5 b10 bit (1) unaligned, 4 137 5 b11 bit (1) unaligned, 4 138 5 b12 bit (1) unaligned, 4 139 5 b13 bit (1) unaligned, 4 140 5 b14 bit (1) unaligned, 4 141 5 b15 bit (1) unaligned, 4 142 5 b16 bit (1) unaligned, 4 143 5 b17 bit (1) unaligned, 4 144 5 b18 bit (1) unaligned, 4 145 5 b19 bit (1) unaligned, 4 146 5 b20 bit (1) unaligned, 4 147 5 b21 bit (1) unaligned, 4 148 5 b22 bit (1) unaligned, 4 149 5 b23 bit (1) unaligned, 4 150 5 b24 bit (1) unaligned, 4 151 5 b25 bit (1) unaligned, 4 152 5 b26 bit (1) unaligned, 4 153 5 b27 bit (1) unaligned, 4 154 5 b28 bit (1) unaligned, 4 155 5 b29 bit (1) unaligned, 4 156 5 b30 bit (1) unaligned, 4 157 5 b31 bit (1) unaligned, 4 158 5 b32 bit (1) unaligned, 4 159 5 b33 bit (1) unaligned, 4 160 5 b34 bit (1) unaligned, 4 161 5 b35 bit (1) unaligned, 4 162 /* 55-60 */ 4 lsftm (0:3) bit (36), 4 163 /* 61 */ 4 lsprt fixed bin (35), 4 164 /* 62 */ 4 ltrm bit (36), 4 165 /* 63 */ 4 linno fixed bin (35), 4 166 /* 64 */ 4 lincr fixed bin (35), 4 167 /* 65 */ 4 ltdes bit (36), 4 168 /* 66 */ 4 lbptr bit (36), 4 169 /* 67 */ 4 lpptr, 4 170 5 last_file_pat_ptr bin (18) uns unal, 4 171 5 lpptr_reserved bin (18) uns unal, 4 172 /* 70 */ 4 lsclp bit (36), 4 173 /* 71 */ 4 limit fixed bin (35), 4 174 /* 72 */ 4 lacpt, 4 175 5 jout_pat_offset bit (18) unal, 4 176 5 permissions unal, 4 177 6 lodx bit (1) unal, 4 178 6 cardin bit (1) unal, 4 179 6 talk bit (1) unal, 4 180 6 lods bit (1) unal, 4 181 5 cardin_urgency bit (14) unal, 4 182 /* 73 */ 4 ldrl, 4 183 5 ilc bit (18) unaligned, 4 184 5 code fixed bin (17) unaligned, 4 185 /* 74 */ 4 ljsnb bit (36), 4 186 /* 75 */ 4 ltm0 bit (36), 4 187 /* 76 */ 4 ltm1 bit (36), 4 188 /* 77 */ 4 ltm2 bit (36), 4 189 /* 100 */ 4 ltm3 bit (36), 4 190 /* 101 */ 4 ltm4 bit (36), 4 191 /* 102 */ 4 ltm5 bit (36), 4 192 /* 103 */ 4 ltmwt bit (36), 4 193 /* 104 */ 4 ltmrs bit (36), 4 194 /* 105 */ 4 ltc0 bit (36), 4 195 /* 106 */ 4 ltc1 bit (36), 4 196 /* 107 */ 4 ltc2 bit (36), 4 197 /* 110 */ 4 lct3 bit (36), 4 198 /* 111 */ 4 ltc4 bit (36), 4 199 /* 112 */ 4 ltc5 bit (36), 4 200 /* 113 */ 4 ltcw bit (36), 4 201 /* 114 */ 4 lkst bit (36), 4 202 /* 115 */ 4 lkst2 bit (36), 4 203 /* 116 */ 4 lkcc bit (36), 4 204 /* 117 */ 4 lkms bit (36), 4 205 /* 120-121 */ 4 lksdc (0:1) bit (36), 4 206 /* 122 */ 4 lkntp bit (36), 4 207 /* 123 */ 4 lkrdc bit (36), 4 208 /* 124 */ 4 lpqf bit (36), 4 209 /* 125 */ 4 lpqb bit (36), 4 210 /* 126 */ 4 lustl bit (36), 4 211 /* 127 */ 4 ltemp bit (36), 4 212 /* 130 */ 4 lrtll, 4 213 5 word_length fixed bin unaligned, 4 214 5 char_length fixed bin unaligned, 4 215 /* 131 */ 4 ltim bit (36), 4 216 /* 132 */ 4 lcfio, 4 217 5 sect_out fixed bin(18)unsigned unal, 4 218 5 sect_in fixed bin(18)unsigned unal, 4 219 /* 133 */ 4 lcfst, 4 220 5 initial_sect_out fixed bin(18)unsigned unal, 4 221 5 start_term fixed bin(18)unsigned unal, 4 222 /* 134 */ 4 lcmpt bit (36), 4 223 /* 135 */ 4 lcjid bit (36), 4 224 /* 136-137 */ 4 lrcal (0:1) bit (36), 4 225 /* 140 */ 4 lrdta bit (36), 4 226 /* 141 */ 4 lrrsk bit (36), 4 227 /* 142 */ 4 lrskd bit (36), 4 228 /* 143 */ 4 lrcc bit (36), 4 229 /* 144-145 */ 4 lrsts (0:1) bit (36), 4 230 /* 146 */ 4 lrtm bit (36), 4 231 /* 147 */ 4 lswt2, 4 232 5 b0 bit (1) unaligned, 4 233 5 b1 bit (1) unaligned, 4 234 5 b2 bit (1) unaligned, 4 235 5 b3 bit (1) unaligned, 4 236 5 b4 bit (1) unaligned, 4 237 5 b5 bit (1) unaligned, 4 238 5 b6 bit (1) unaligned, 4 239 5 b7 bit (1) unaligned, 4 240 5 b8 bit (1) unaligned, 4 241 5 b9 bit (1) unaligned, 4 242 5 b10 bit (1) unaligned, 4 243 5 b11 bit (1) unaligned, 4 244 5 b12 bit (1) unaligned, 4 245 5 b13 bit (1) unaligned, 4 246 5 b14 bit (1) unaligned, 4 247 5 b15 bit (1) unaligned, 4 248 5 b16 bit (1) unaligned, 4 249 5 b17 bit (1) unaligned, 4 250 5 b18 bit (1) unaligned, 4 251 5 b19 bit (1) unaligned, 4 252 5 b20 bit (1) unaligned, 4 253 5 b21 bit (1) unaligned, 4 254 5 b22 bit (1) unaligned, 4 255 5 b23 bit (1) unaligned, 4 256 5 b24 bit (1) unaligned, 4 257 5 b25 bit (1) unaligned, 4 258 5 b26 bit (1) unaligned, 4 259 5 b27 bit (1) unaligned, 4 260 5 b28 bit (1) unaligned, 4 261 5 b29 bit (1) unaligned, 4 262 5 b30 bit (1) unaligned, 4 263 5 b31 bit (1) unaligned, 4 264 5 b32 bit (1) unaligned, 4 265 5 b33 bit (1) unaligned, 4 266 5 b34 bit (1) unaligned, 4 267 5 b35 bit (1) unaligned, 4 268 /* 150 */ 4 llsnb bit (36), 4 269 /* 151 */ 4 lesq bit (36), 4 270 /* 152-153 */ 4 lumc (0:1) bit (36), 4 271 /* 154-155 */ 4 lfnam (0:1) bit (36), 4 272 /* 156 */ 4 lopts bit (36), 4 273 /* 157 */ 4 licec, 4 274 5 b0_17 bit (18) unaligned, 4 275 5 b18_35 fixed bin (17) unaligned, 4 276 /* 160 */ 4 lflg3, 4 277 5 b0 bit (1) unaligned, 4 278 5 b1 bit (1) unaligned, 4 279 5 b2 bit (1) unaligned, 4 280 5 b3 bit (1) unaligned, 4 281 5 b4 bit (1) unaligned, 4 282 5 b5 bit (1) unaligned, 4 283 5 b6 bit (1) unaligned, 4 284 5 b7 bit (1) unaligned, 4 285 5 b8 bit (1) unaligned, 4 286 5 b9 bit (1) unaligned, 4 287 5 b10 bit (1) unaligned, 4 288 5 b11 bit (1) unaligned, 4 289 5 b12 bit (1) unaligned, 4 290 5 b13 bit (1) unaligned, 4 291 5 b14 bit (1) unaligned, 4 292 5 b15 bit (1) unaligned, 4 293 5 b16 bit (1) unaligned, 4 294 5 b17 bit (1) unaligned, 4 295 5 b18 bit (1) unaligned, 4 296 5 b19 bit (1) unaligned, 4 297 5 b20 bit (1) unaligned, 4 298 5 b21 bit (1) unaligned, 4 299 5 b22 bit (1) unaligned, 4 300 5 b23 bit (1) unaligned, 4 301 5 b24 bit (1) unaligned, 4 302 5 b25 bit (1) unaligned, 4 303 5 b26 bit (1) unaligned, 4 304 5 b27 bit (1) unaligned, 4 305 5 b28 bit (1) unaligned, 4 306 5 b29 bit (1) unaligned, 4 307 5 b30 bit (1) unaligned, 4 308 5 b31 bit (1) unaligned, 4 309 5 b32 bit (1) unaligned, 4 310 5 b33 bit (1) unaligned, 4 311 5 b34 bit (1) unaligned, 4 312 5 b35 bit (1) unaligned, 4 313 /* 161-163 */ 4 lpage (0:2) bit (36), 4 314 /* 164 */ 4 lsit1 bit (36), 4 315 /* 165 */ 4 lsit2 bit (36), 4 316 /* 166 */ 4 lsit3 bit (36), 4 317 /* 167 */ 4 lsit4 bit (36), 4 318 /* The following entries are maintained by gtss and are not found in TSS UST */ 4 319 /* 170 */ 4 lxxx, /* program stack index, offset from gtss_ust */ 4 320 5 b0_17 fixed bin (17) unaligned, 4 321 5 b18_35 bit (18) unaligned, /* not used */ 4 322 /* 171-175 */ 4 lprgs (5), 4 323 5 b0_17 fixed bin (17) unaligned, 4 324 5 b18_35 fixed bin (17) unaligned, 4 325 /* 176 */ 4 fill bit (36), 4 326 /* 177 */ 4 remote_io_buffer aligned, 4 327 5 buffer_control_word, 4 328 6 current_line_pointer bit (18)unal, 4 329 6 buffer_threshold_address bit (18)unal, 4 330 5 number_words_transmitted fixed bin (17)unal, 4 331 5 FILL1 fixed bin (17)unal, 4 332 5 count_of_characters_transmitted fixed bin (17)unal, 4 333 5 FILL2 fixed bin (17)unal, 4 334 5 characters_transmitted (244) char (1) unal, 4 335 /* 277 */ 4 word_after_ust bit (36) aligned; 4 336 4 337 /* END INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 343 344 5 1 /* BEGIN INCLUDE FILE gtss_ext_.incl.pl1 */ 5 2 /* 5 3* Created: (Wardd Multics) 05/20/78 1307.6 mst Sat 5 4* Modified: Ward 1981 add suspended_process dcl 5 5* Modified: Ron Barstad 83-07-21 Fixed level number on mcfc to 3 5 6* Modified: Ron Barstad 83-07-25 Fixed derail range in statistics to 4js3 number 5 7**/ 5 8 dcl gtss_ext_$aem fixed bin static ext /* >0 Print "additional" error information. */; 5 9 dcl gtss_ext_$bad_drl_rtrn static ext label /* Default for drl_rtrn. */; 5 10 dcl gtss_ext_$db (72)bit(1)unal static ext; 5 11 dcl gtss_ext_$deferred_catalogs_ptr ptr ext; 5 12 dcl gtss_ext_$dispose_of_drl static ext label /* quit handlers for some derails use this label to abort */; 5 13 dcl gtss_ext_$drl_rtrn (4)static ext label /* where to return at subsystem end */; 5 14 dcl gtss_ext_$drm_path char(168)static ext /* gtss_expand_pathname_stores drm_path */; 5 15 dcl gtss_ext_$drun_jid char (5) static ext /* valid only for DRUN executing under absentee */; 5 16 dcl gtss_ext_$event_channel fixed bin (71) static ext /* used for DABT signals */; 5 17 dcl gtss_ext_$finished static ext label /* Return to gtss for normal conclusion. */; 5 18 dcl gtss_ext_$gdb_name char(8)ext /* Name H* module to debug. */; 5 19 dcl gtss_ext_$get_line entry(ptr,ptr,fixed bin(21),fixed bin(21),fixed bin(35))variable ext /* Build mode input procedure. */; 5 20 dcl gtss_ext_$gtss_slave_area_seg (4) ext static ptr /* pointer to gtss slave area segment */; 5 21 dcl gtss_ext_$hcs_work_area_ptr ptr ext static /* Temp seg for acl lists. */; 5 22 dcl gtss_ext_$homedir char (64) static ext /* user's home dir */; 5 23 dcl gtss_ext_$last_k_was_out bit (1)aligned ext static /* "1"b => last tty output was output. */; 5 24 dcl gtss_ext_$pdir char (168) varying ext static /* pathname of process directory */; 5 25 dcl gtss_ext_$popup_from_pi static ext label /* transfer to this label after pi simulates popup primitive */; 5 26 dcl gtss_ext_$process_type fixed bin (17) static ext; 5 27 dcl gtss_ext_$put_chars entry(ptr,ptr,fixed bin(24),fixed bin(35)) variable ext /* Terminal output procedure. */; 5 28 dcl gtss_ext_$restart_from_pi static ext label /* transfer to this label after pi restores machine conditions */; 5 29 dcl gtss_ext_$restart_seg_ptr ptr static ext /* points to DRUN restart file when exec under absentee */; 5 30 dcl gtss_ext_$sig_ptr ext static ptr /* saved ptr to signal_ */; 5 31 dcl gtss_ext_$stack_level_ fixed bin ext static; 5 32 dcl gtss_ext_$suspended_process bit(1) ext static; 5 33 dcl gtss_ext_$SYstarstar_file_no fixed bin (24) static ext; 5 34 dcl gtss_ext_$user_id char (26)var ext; 5 35 dcl gtss_ext_$work_area_ptr ptr ext; 5 36 5 37 dcl 1 gtss_ext_$CFP_bits aligned static external 5 38 , 3 no_input_yet bit (1) unaligned /* used in gtss_CFP_input_, gtss_read_starCFP_ */ 5 39 , 3 rtn_bits bit (4) unaligned /* used in gtss_CFP_input_, gtss_CFP_output_ */ 5 40 , 3 cpos_called bit (1) unaligned /* used in gtss_CFP_input_, gtss_drl_t_cfio_, gtss_abandon_CFP_ */ 5 41 , 3 cout_called bit (1) unaligned /* used in gtss_read_starCFP_, gtss_abandon_CFP_ */ 5 42 , 3 build_mode bit (1) unaligned /* used in gtss_build_, gtss_dsd_process_ */ 5 43 ; 5 44 5 45 dcl 1 gtss_ext_$com_reg aligned static ext, 5 46 3 tsdmx, 5 47 4 dst fixed bin (18) unsigned unaligned, 5 48 4 dit fixed bin (18) unsigned unaligned, 5 49 3 tsdpt fixed bin (36) unsigned unaligned, 5 50 3 tsddt fixed bin (36) unsigned unaligned, 5 51 3 tsdid bit (72) unaligned, 5 52 3 tsdsd bit (36) unaligned, 5 53 3 tsdst fixed bin (36) unsigned unaligned, 5 54 3 tsdjb fixed bin (35) unaligned, 5 55 3 tsdgt, 5 56 4 ust_loc fixed bin (18) unsigned unaligned, 5 57 4 gating_ctl fixed bin (18) unsigned unaligned, 5 58 3 tcdfr bit (36) unaligned; 5 59 5 60 dcl 1 gtss_ext_$flags aligned static ext 5 61 , 3 dispose_of_drl_on_pi bit (01) unal /* 1 => drl that should be aborted after quit-pi sequence */ 5 62 , 3 drl_in_progress bit (01) unal /* 1 => drl handler executing; 0 => gcos code executing */ 5 63 , 3 popup_from_pi bit (01) unal /* 1 => derail processor will simulate Gcos break instead of returning */ 5 64 , 3 unfinished_drl bit (01) unal /* 1 => subsystem is handling breaks and quit was raised during a drl */ 5 65 , 3 ss_time_limit_set bit (01) unal /* 1 => exec time limit set for subsystem */ 5 66 , 3 timer_ranout bit (01) unal /* 1 => user is executing timer runout code */ 5 67 , 3 gtss_com_err_sw bit (01) unal /* 1 => stop com_err_ string from going to terminal */ 5 68 , 3 available bit (65) unal 5 69 ; 5 70 5 71 5 72 dcl 1 gtss_ext_$statistics aligned static ext, /* Derail usage statistics */ 5 73 3 total_time (-10:71)fixed bin (71), 5 74 3 count (-10:71)fixed bin (17); 5 75 5 76 /* Declaration of Available File Table 5 77* */ 5 78 dcl 1 gtss_ext_$aft aligned ext, /* aft structure */ 5 79 5 80 3 start_list (0:102) fixed bin (24), /* >0 => 1st aft_entry row to start of next entry chain. */ 5 81 5 82 3 aft_entry (20), 5 83 4 altname char (8), /* altname name for attaching this file */ 5 84 4 next_entry fixed bin (24), /* Next aft_entry in hash chain. */ 5 85 4 previous_add fixed bin (24), /* Previously added entry. */ 5 86 4 next_add fixed bin (24), /* Entry added after this one. */ 5 87 4 used bit (1) unal, /* "1"b => aft_entry contains AFT value. */ 5 88 4 forced bit(1) unal, /* "1"b => gtss_verify_access_ forced access on this file. */ 5 89 5 90 3 free_space fixed bin (24), /* Index of start of free space list for aft entries. */ 5 91 3 first_added fixed bin (24), /* >0 => start of chain in add order. */ 5 92 3 last_added fixed bin (24) /* >0 => end of chain in added order. */; 5 93 5 94 dcl gtss_ext_$ppt ptr ext /* switch name for tapein drl */; 5 95 /** Data structure to provide access to installed 5 96* subsystems fast library load. 5 97* **/ 5 98 dcl 1 gtss_ext_$fast_lib aligned ext 5 99 , 3 fast_lib_fcb ptr /* Pointer to msf fcb. */ 5 100 , 3 fast_lib_ncp fixed bin (24) /* Number of components. */ 5 101 , 3 comp_ptr (0:9)ptr /* Pointer to component. */ 5 102 , 3 comp_wds (0:9)fixed bin (24) /* Component length (words). */ 5 103 ; 5 104 5 105 /* Pointers to segments to regulate multipler 5 106* callers to files. Same segments are used to regulate 5 107* all simulator callers. 5 108**/ 5 109 dcl 1 gtss_ext_$mcfc aligned ext, 5 110 3 multics_lock_id bit(36), 5 111 3 wait_time fixed bin, 5 112 3 files_ptr ptr, 5 113 3 names_ptr ptr, 5 114 3 callers_ptr (0:3)ptr 5 115 ; 5 116 5 117 /* END INCLUDE FILE gtss_ext_.incl.pl1 */ 345 346 6 1 /* BEGIN INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 6 2 /* 6 3* Created: (Wardd Multics) 06/30/78 1624.8 mst Fri 6 4* Modified: Ron Barstad 84-02-24 Fixed wrong and obsolete entries 6 5**/ 6 6 6 7 /** gtss external entry variables. **/ 6 8 dcl com_err_ entry() options(variable); 6 9 dcl gtss_CFP_abort_ entry options(variable); 6 10 dcl gtss_CFP_break_ entry options(variable); 6 11 dcl gtss_CFP_input_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 6 12 dcl gtss_CFP_output_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 6 13 dcl gtss_abandon_CFP_ entry options(variable); 6 14 dcl gtss_abort_dump_ entry (fixed bin(18)); 6 15 dcl gtss_abort_subsystem_ entry options (variable); 6 16 dcl gtss_abort_subsystem_$not_imp entry (ptr, fixed bin(24)); 6 17 dcl gtss_abs_login_banner_ entry() returns(char(*)); 6 18 dcl gtss_abs_logout_banner_ entry() returns(char(*)); 6 19 dcl gtss_abs_$abs_equiv entry options(variable); 6 20 dcl gtss_abs_$cpu_runout entry (ptr, char(4)); 6 21 dcl gtss_abs_$create_absin entry() returns(char(*)); 6 22 dcl gtss_abs_$dabt_check entry (ptr, char(4)); 6 23 dcl gtss_abs_$get_id entry (char(5)) returns(char(19)); 6 24 dcl gtss_abs_$get_drm entry() returns(char(*)); 6 25 dcl gtss_adjust_size_ entry (ptr); 6 26 dcl gtss_aft_$add entry (char(8), fixed bin(24), fixed bin(35)); 6 27 dcl gtss_aft_$delete entry (char(8), fixed bin(24), fixed bin(35)); 6 28 dcl gtss_aft_$find entry (char(8), fixed bin(24), fixed bin(35)); 6 29 dcl gtss_aft_$initialize entry (fixed bin(35)); 6 30 dcl gtss_ascii_bcd_ entry (ptr, fixed bin, ptr); 6 31 dcl gtss_attributes_mgr_$get entry (ptr, fixed bin(35)); 6 32 dcl gtss_attributes_mgr_$set entry (ptr, fixed bin(35)); 6 33 dcl gtss_bcd_ascii_ entry (ptr, fixed bin(24), ptr); 6 34 dcl gtss_bcd_ascii_$lc entry (ptr, fixed bin(24), ptr); 6 35 dcl gtss_break_vector_ entry (); 6 36 dcl gtss_break_vector_$drl_in_progress entry() returns(bit(1)); 6 37 dcl gtss_break_vector_$status entry() returns(bit(1)); 6 38 dcl gtss_build_ entry options(variable); 6 39 dcl gtss_com_err_ entry options(variable); 6 40 dcl gtss_derail_processor_ entry (ptr, char(*), ptr, ptr, bit(1) aligned) /* called at fault time instead of signal_ */; 6 41 dcl gtss_derail_processor_$set entry options(variable); 6 42 dcl gtss_dq_$catp entry (char (5), ptr, fixed bin (18) unsigned); 6 43 dcl gtss_dq_$create entry (bit(1)); 6 44 dcl gtss_dq_$dibp entry (char(5), ptr); 6 45 dcl gtss_dq_$entries_info entry (ptr, fixed bin (18) unsigned, fixed bin (18) unsigned); 6 46 dcl gtss_dq_$hdrp entry (ptr); 6 47 dcl gtss_dq_$mod_js entry (char(5), fixed bin (6) unsigned, bit (1)); 6 48 dcl gtss_dq_$open_exc entry (bit(1)); 6 49 dcl gtss_dq_$open_gen entry (bit(1)); 6 50 dcl gtss_drl_abort_ entry (ptr, fixed bin); 6 51 dcl gtss_drl_addmem_ entry (ptr, fixed bin); 6 52 dcl gtss_drl_callss_ entry (ptr, fixed bin); 6 53 dcl gtss_drl_corfil_ entry (ptr, fixed bin); 6 54 dcl gtss_drl_defil_ entry (ptr, fixed bin); 6 55 dcl gtss_drl_defil_$subr entry (ptr, ptr, ptr); 6 56 dcl gtss_drl_dio_ entry (ptr, fixed bin); 6 57 dcl gtss_drl_drlimt_ entry (ptr, fixed bin); 6 58 dcl gtss_drl_drlsav_ entry (ptr, fixed bin); 6 59 dcl gtss_drl_filact_ entry (ptr, fixed bin); 6 60 dcl gtss_drl_filsp_ entry (ptr, fixed bin); 6 61 dcl gtss_drl_grow_ entry (ptr, fixed bin); 6 62 dcl gtss_drl_gwake_ entry (ptr, fixed bin); 6 63 dcl gtss_drl_jsts_ entry (ptr, fixed bin); 6 64 dcl gtss_drl_kin_ entry (ptr, fixed bin); 6 65 dcl gtss_drl_kotnow_ entry (ptr, fixed bin); 6 66 dcl gtss_drl_kotnow_$gtss_drl_kout_ entry (ptr, fixed bin); 6 67 dcl gtss_drl_koutn_ entry (ptr, fixed bin); 6 68 dcl gtss_drl_morlnk_ entry (ptr, fixed bin); 6 69 dcl gtss_drl_msub_ entry (ptr, fixed bin); 6 70 dcl gtss_drl_objtim_ entry (ptr, fixed bin); 6 71 dcl gtss_drl_part_ entry (ptr, fixed bin); 6 72 dcl gtss_drl_pasaft_ entry (ptr, fixed bin); 6 73 dcl gtss_drl_pasdes_ entry (ptr, fixed bin); 6 74 dcl gtss_drl_pasust_ entry (ptr, fixed bin); 6 75 dcl gtss_drl_pdio_ entry (ptr, fixed bin); 6 76 dcl gtss_drl_prgdes_ entry (ptr, fixed bin); 6 77 dcl gtss_drl_pseudo_ entry (ptr, fixed bin); 6 78 dcl gtss_drl_relmem_ entry (ptr, fixed bin); 6 79 dcl gtss_drl_restor_ entry (ptr, fixed bin); 6 80 dcl gtss_drl_retfil_ entry (ptr, fixed bin); 6 81 dcl gtss_drl_return_ entry (ptr, fixed bin); 6 82 dcl gtss_drl_rew_ entry (ptr, fixed bin); 6 83 dcl gtss_drl_rstswh_ entry (ptr, fixed bin); 6 84 dcl gtss_drl_setlno_ entry (ptr, fixed bin); 6 85 dcl gtss_drl_setswh_ entry (ptr, fixed bin); 6 86 dcl gtss_drl_snumb_ entry (ptr, fixed bin); 6 87 dcl gtss_drl_spawn_ entry (ptr, fixed bin); 6 88 dcl gtss_drl_spawn_$gtss_drl_pasflr_ entry (ptr, fixed bin); 6 89 dcl gtss_drl_stoppt_ entry (ptr, fixed bin); 6 90 dcl gtss_drl_switch_ entry (ptr, fixed bin); 6 91 dcl gtss_drl_sysret_ entry (ptr, fixed bin); 6 92 dcl gtss_drl_t_cfio_ entry (ptr, fixed bin); 6 93 dcl gtss_drl_t_cmov_ entry (ptr, fixed bin); 6 94 dcl gtss_drl_t_err_ entry (ptr, fixed bin); 6 95 dcl gtss_drl_t_goto_ entry (ptr, fixed bin); 6 96 dcl gtss_drl_t_linl_ entry (ptr, fixed bin); 6 97 dcl gtss_drl_t_rscc_ entry (ptr, fixed bin); 6 98 dcl gtss_drl_tapein_ entry (ptr, fixed bin); 6 99 dcl gtss_drl_task_ entry (ptr, fixed bin); 6 100 dcl gtss_drl_termtp_ entry (ptr, fixed bin); 6 101 dcl gtss_drl_time_ entry (ptr, fixed bin); 6 102 dcl gtss_drun_ entry (bit(1)); 6 103 dcl gtss_dsd_lookup_ entry (char(8) var) returns(fixed bin(24)); 6 104 dcl gtss_dsd_process_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 6 105 dcl gtss_edit_dsd_ entry (ptr, fixed bin(21)) returns(fixed bin(24)); 6 106 dcl gtss_mcfc_empty entry (char(*) var); 6 107 dcl gtss_expand_pathname_ entry (ptr, char(*), char(*), fixed bin(35)); 6 108 dcl gtss_expand_pathname_$verify_umc entry (ptr, char(*), char(*), bit(18), fixed bin(35)); 6 109 dcl gtss_fault_processor_ entry options(variable); 6 110 dcl gtss_find_cond_frame_ entry (char(32) var) returns(ptr); 6 111 dcl gtss_fault_processor_$timer_runout entry (ptr, char(*)); 6 112 dcl gtss_filact_error_status_ entry (fixed bin(35))returns(bit(12)); 6 113 dcl gtss_filact_funct02_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 114 dcl gtss_filact_funct03_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 115 dcl gtss_filact_funct04_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 116 dcl gtss_filact_funct05_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 117 dcl gtss_filact_funct08_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 118 dcl gtss_filact_funct10_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 119 dcl gtss_filact_funct11_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 120 dcl gtss_filact_funct14_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 121 dcl gtss_filact_funct18_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 122 dcl gtss_filact_funct19_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 123 dcl gtss_filact_funct21_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 124 dcl gtss_filact_funct22_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 6 125 dcl gtss_mcfc_init_ entry (char(*) var); 6 126 dcl gtss_interp_prim_ entry options(variable); 6 127 dcl gtss_interp_prim_$callss entry (char(4), ptr); 6 128 dcl gtss_interp_prim_$sysret entry options(variable); 6 129 dcl gtss_interp_prim_$t_goto entry (char(4)); 6 130 dcl gtss_ios_change_size_ entry (fixed bin(24), fixed bin(24), bit(1), fixed bin(24), fixed bin(35)); 6 131 dcl gtss_ios_close_ entry (fixed bin(24), ptr, fixed bin(35)); 6 132 dcl gtss_ios_exchange_names_ entry (fixed bin(24), fixed bin(24), fixed bin(24), fixed bin(35)); 6 133 dcl gtss_ios_initialize_ entry options(variable); 6 134 dcl gtss_ios_io_ entry (fixed bin(24), ptr, ptr, fixed bin(24), fixed bin(24), fixed bin(35)); 6 135 dcl gtss_ios_open_ entry (fixed bin(24), char(168), char(32), bit(6), bit(1), ptr, ptr, fixed bin(35)); 6 136 dcl gtss_ios_position_ entry (fixed bin(24), fixed bin(24), fixed bin(24), bit(6), ptr); 6 137 dcl gtss_mcfc_$delete entry (fixed bin(24), char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 6 138 dcl gtss_mcfc_$open entry (char(*), char(*), bit(6), bit(36) aligned, ptr, fixed bin(35)); 6 139 dcl gtss_mcfc_$close entry (char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 6 140 dcl gtss_read_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 6 141 dcl gtss_read_starCFP_$last_os entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 6 142 dcl gtss_run_subsystem_ entry (fixed bin(24)); 6 143 dcl gtss_run_subsystem_$finish entry options(variable); 6 144 dcl gtss_run_subsystem_$restor entry (fixed bin(24), ptr); 6 145 dcl gtss_run_subsystem_$restor_perm entry (fixed bin(24), ptr, fixed bin(18)); 6 146 dcl gtss_set_slave_ entry (fixed bin (24), ptr); 6 147 dcl gtss_set_slave_$load_bar entry (fixed bin (17)); 6 148 dcl gtss_update_safe_store_ entry (ptr); 6 149 dcl gtss_verify_access_ entry (char(*), char(*), fixed bin(24), bit(6), bit(12) aligned); 6 150 dcl gtss_verify_access_$check_forced_access entry (char(*), char(*), fixed bin(24)); 6 151 dcl gtss_write_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 6 152 /* END INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 347 348 7 1 /* BEGIN INCLUDE FILE gtss_deferred_queue.incl.pl1 */ 7 2 /* 7 3* Created: (Dupuis Multics) 06/26/79 0848.7 mst Tue 7 4* Changed: Ron Barstad 84-11-29 dq_catalog.dcelp changed to fixed bin 35 (was 36 unsigned) 7 5**/ 7 6 dcl 1 dq_header based, 7 7 2 dhcks fixed bin (36) unsigned unaligned, 7 8 2 dhnam fixed bin (36) unsigned unaligned, 7 9 2 dhdat bit (36) unaligned, 7 10 2 dhtim fixed bin (36) unsigned unaligned, 7 11 2 dhbsn, 7 12 3 no_of_cea fixed bin (18) unsigned unaligned, 7 13 3 tss_ssn fixed bin (18) unsigned unaligned, 7 14 2 dhseq, 7 15 3 no_of_ceiu fixed bin (18) unsigned unaligned, 7 16 3 no_of_dss fixed bin (18) unsigned unaligned, 7 17 2 dhtns, 7 18 3 no_of_srts fixed bin (18) unsigned unaligned, 7 19 3 no_of_dsi fixed bin (18) unsigned unaligned, 7 20 2 dhrns fixed bin (36) unsigned unaligned; 7 21 7 22 7 23 dcl 1 dq_catalog based, 7 24 2 dcjid, 7 25 3 bcd_job_id bit (30) unaligned, 7 26 3 job_status fixed bin (6) unsigned unaligned, 7 27 2 dcseq, 7 28 3 jsn fixed bin (18) unsigned unaligned, 7 29 3 reserved bit (1) unaligned, 7 30 3 init_seq fixed bin (17) unsigned unaligned, 7 31 2 dcuid bit (72) unaligned, 7 32 2 dcdsd bit (36) unaligned, 7 33 2 dcdst fixed bin (35) unaligned, 7 34 2 dcelp fixed bin (35) unaligned, 7 35 2 dcusr, 7 36 3 not_used bit (18) unaligned, 7 37 3 b18_35_lswth bit (18) unaligned; 7 38 7 39 dcl 1 dq_dib based, 7 40 2 dbdat bit (36) unaligned, 7 41 2 dbtim bit (36) unaligned, 7 42 2 dblin fixed bin (36) unaligned unsigned, 7 43 2 dberr, 7 44 3 dbalt_cc fixed bin (18) unaligned unsigned, 7 45 3 dbdsc_cc fixed bin (18) unaligned unsigned, 7 46 2 dbptr, 7 47 3 dbdsc_ro fixed bin (18) unaligned unsigned, 7 48 3 ofn_ro fixed bin (17) unaligned, 7 49 2 dbflg, 7 50 3 alloc_perm bit (9) unaligned, 7 51 3 del_char char (1) unaligned, 7 52 3 f_res bit (1) unaligned, 7 53 3 f_sub bit (1) unaligned, 7 54 3 f_arg bit (1) unaligned, 7 55 3 f_del bit (1) unaligned, 7 56 3 f_exc bit (1) unaligned, 7 57 3 f_inc bit (1) unaligned, 7 58 3 f_lni bit (1) unaligned, 7 59 3 f_alt bit (1) unaligned, 7 60 3 f_fnq bit (1) unaligned, 7 61 3 f_ucs bit (1) unaligned, 7 62 3 f_lcs bit (1) unaligned, 7 63 3 arg_char char (1) unaligned, 7 64 2 rest (58) bit (36) unaligned; 7 65 7 66 dcl 1 cout_sector based, 7 67 2 filler_1 (6) bit (36), 7 68 2 c_lcfio, 7 69 3 sector_out fixed bin (18) unaligned unsigned, 7 70 3 sector_in fixed bin (18) unaligned unsigned, 7 71 2 c_lcfst, 7 72 3 init_sect_out fixed bin (18) unaligned unsigned, 7 73 3 start_term fixed bin (18) unaligned unsigned, 7 74 2 filler_2 (40) bit (36), 7 75 2 label_table (8), 7 76 3 label_name bit (54), 7 77 3 label_pos fixed bin (18) unaligned unsigned; 7 78 7 79 /* END INCLUDE FILE gtss_deferred_queue.incl.pl1 */ 349 350 8 1 /* BEGIN INCLUDE FILE gtss_db_names.incl.pl1 */ 8 2 /* 8 3* Created: (Wardd Multics) 03/29/79 1909.1 mst Thu 8 4**/ 8 5 8 6 /* To provide a new debugging switch: 8 7* 8 8* 1) Locate the comment "Insert next entry above this comment". 8 9* 8 10* 2) Place a new declaration for a db_ variable just 8 11* above this comment, in the same manner as the 8 12* current declaration just above the comment, using 8 13* the next integer gtss_ext_$db index. 8 14* 8 15* 3) Execute the gtss|db_names ted macro (this updates 8 16* the sorted name table). 8 17* 8 18* 4) Example use: 8 19* 8 20* if db_drl_grow then do; 8 21* . 8 22* . 8 23* . 8 24* debug i/o statements using com_err_ or ioa_ 8 25* . 8 26* . 8 27* . 8 28* end; 8 29* 8 30**/ 8 31 8 32 dcl ( 8 33 db_ bit(1) defined(gtss_ext_$db(01)) 8 34 ,db_CFP_input bit(1) defined(gtss_ext_$db(02)) 8 35 ,db_drl_addmem bit(1) defined(gtss_ext_$db(03)) 8 36 ,db_drl_defil bit(1) defined(gtss_ext_$db(04)) 8 37 ,db_drl_filact bit(1) defined(gtss_ext_$db(05)) 8 38 ,db_drl_filsp bit(1) defined(gtss_ext_$db(06)) 8 39 ,db_drl_grow bit(1) defined(gtss_ext_$db(07)) 8 40 ,db_drl_rew bit(1) defined(gtss_ext_$db(08)) 8 41 ,db_filact_funct02 bit(1) defined(gtss_ext_$db(09)) 8 42 ,db_filact_funct03 bit(1) defined(gtss_ext_$db(10)) 8 43 ,db_filact_funct04 bit(1) defined(gtss_ext_$db(11)) 8 44 ,db_filact_funct05 bit(1) defined(gtss_ext_$db(12)) 8 45 ,db_filact_funct10 bit(1) defined(gtss_ext_$db(13)) 8 46 ,db_filact_funct11 bit(1) defined(gtss_ext_$db(14)) 8 47 ,db_filact_funct14 bit(1) defined(gtss_ext_$db(15)) 8 48 ,db_filact_funct18 bit(1) defined(gtss_ext_$db(16)) 8 49 ,db_filact_funct19 bit(1) defined(gtss_ext_$db(17)) 8 50 ,db_filact_funct21 bit(1) defined(gtss_ext_$db(18)) 8 51 ,db_filact_funct22 bit(1) defined(gtss_ext_$db(19)) 8 52 ,db_interp_prim bit(1) defined(gtss_ext_$db(20)) 8 53 ,db_ios bit(1) defined(gtss_ext_$db(21)) 8 54 ,db_run_subsystem bit(1) defined(gtss_ext_$db(22)) 8 55 ,db_drl_t_cfio bit(1) defined(gtss_ext_$db(23)) 8 56 ,db_drl_switch bit(1) defined(gtss_ext_$db(24)) 8 57 ,db_drl_dio bit(1) defined(gtss_ext_$db(25)) 8 58 ,db_drl_retfil bit(1) defined(gtss_ext_$db(26)) 8 59 ,db_drl_msub bit(1) defined(gtss_ext_$db(27)) 8 60 ,db_drl_callss bit(1) defined(gtss_ext_$db(28)) 8 61 ,db_drl_rstswh bit(1) defined(gtss_ext_$db(29)) 8 62 ,db_drl_setswh bit(1) defined(gtss_ext_$db(30)) 8 63 ,db_mcfc bit(1) defined(gtss_ext_$db(31)) 8 64 ,db_dq bit(1) defined(gtss_ext_$db(32)) 8 65 ,db_abs bit(1) defined(gtss_ext_$db(33)) 8 66 ,db_attributes_mgr bit(1) defined(gtss_ext_$db(34)) 8 67 ,db_expand_pathname bit(1) defined(gtss_ext_$db(35)) 8 68 ,db_drl_part bit(1) defined(gtss_ext_$db(36)) 8 69 ,db_drl_morlnk bit(1) defined(gtss_ext_$db(37)) 8 70 ,db_drl_kin bit(1) defined(gtss_ext_$db(38)) 8 71 /* Insert next entry above this comment. */ 8 72 ); 8 73 8 74 /* Table of sorted names. */ 8 75 dcl 1 debug_bit_names (38) static int options(constant) 8 76 , 2 name char(18)var init( 8 77 "" ,"CFP_input" ,"abs" ,"attributes_mgr" ,"dq" ,"drl_addmem" 8 78 ,"drl_callss" ,"drl_defil" ,"drl_dio" ,"drl_filact" ,"drl_filsp" 8 79 ,"drl_grow" ,"drl_kin" ,"drl_morlnk" ,"drl_msub" ,"drl_part" 8 80 ,"drl_retfil" ,"drl_rew" ,"drl_rstswh" ,"drl_setswh" ,"drl_switch" 8 81 ,"drl_t_cfio" ,"expand_pathname" ,"filact_funct02" ,"filact_funct03" 8 82 ,"filact_funct04" ,"filact_funct05" ,"filact_funct10" ,"filact_funct11" 8 83 ,"filact_funct14" ,"filact_funct18" ,"filact_funct19" ,"filact_funct21" 8 84 ,"filact_funct22" ,"interp_prim" ,"ios" ,"mcfc" ,"run_subsystem" 8 85 ) 8 86 , 2 value fixed bin init( 8 87 01 ,02 ,33 ,34 ,32 ,03 ,28 ,04 ,25 ,05 ,06 ,07 ,38 ,37 ,27 ,36 ,26 ,08 8 88 ,29 ,30 ,24 ,23 ,35 ,09 ,10 ,11 ,12 ,13 ,14 ,15 ,16 ,17 ,18 ,19 ,20 ,21 8 89 ,31 ,22 8 90 ); 8 91 /* End of table. */ 8 92 /* END INCLUDE FILE gtss_db_names.incl.pl1 */ 351 352 end /* gtss_CFP_input_ */; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1042.5 gtss_CFP_input_.pl1 >spec>on>7105>gtss_CFP_input_.pl1 337 1 09/09/83 1713.2 gtss_CFP_bits.incl.pl1 >ldd>include>gtss_CFP_bits.incl.pl1 339 2 09/09/83 1713.7 gtss_device_cmds.incl.pl1 >ldd>include>gtss_device_cmds.incl.pl1 341 3 09/09/83 1714.2 gtss_starCF_.incl.pl1 >ldd>include>gtss_starCF_.incl.pl1 343 4 09/09/83 1714.3 gtss_ust_ext_.incl.pl1 >ldd>include>gtss_ust_ext_.incl.pl1 345 5 09/09/83 1713.8 gtss_ext_.incl.pl1 >ldd>include>gtss_ext_.incl.pl1 347 6 12/10/84 1029.7 gtss_entry_dcls.incl.pl1 >spec>on>7105>gtss_entry_dcls.incl.pl1 349 7 12/10/84 1029.7 gtss_deferred_queue.incl.pl1 >spec>on>7105>gtss_deferred_queue.incl.pl1 351 8 09/09/83 1713.6 gtss_db_names.incl.pl1 >ldd>include>gtss_db_names.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. CFP_in_progress defined bit(1) unaligned dcl 1-7 ref 97 CR 002220 constant char(1) initial unaligned dcl 302 ref 100 274 274 279 Device_Command 2 000026 external static bit(6) level 4 packed unaligned dcl 3-12 set ref 226* NL 002221 constant char(1) initial unaligned dcl 299 ref 100 272 274 274 279 OP2 2 000026 external static structure level 3 dcl 3-12 RECORD 12 000026 external static structure level 2 dcl 3-12 Seek_Address 6 000026 external static fixed bin(35,0) level 2 dcl 3-12 set ref 225* aft_indx 113 000026 external static fixed bin(24,0) level 3 dcl 3-12 set ref 227 attempts 000103 automatic fixed bin(24,0) dcl 303 set ref 253* 254 259* 259 b0 54 000030 external static bit(1) level 4 packed unaligned dcl 4-16 ref 74 74 b1 54(01) 000030 external static bit(1) level 4 packed unaligned dcl 4-16 ref 74 74 b4 54(04) 000030 external static bit(1) level 4 packed unaligned dcl 4-16 ref 74 74 b8 54(08) 000030 external static bit(1) level 4 packed unaligned dcl 4-16 ref 97 97 bp parameter pointer dcl 21 set ref 9 85 85 90 90 97 100 100 101* 112* 122* 125* 134* 138* 139* 166* 174* 175* 184* 186* 187* 197* 198* 200* 201* 258* 274 276* 279 280* 283* buffer 000232 automatic varying char(300) dcl 289 set ref 271* 272 274 278 279 cf 112 000026 external static structure level 2 dcl 3-12 set ref 228 228 chars 13 000026 external static char(252) level 3 dcl 3-12 ref 77 77 code 000104 automatic fixed bin(35,0) initial dcl 304 set ref 125* 126 139* 141 175* 176 187* 189 198* 199 201* 203 228* 236* 276* 277 280* 281 287 304* com_err_ 000036 constant entry external dcl 6-8 ref 236 256 copy_on defined bit(1) unaligned dcl 1-9 ref 74 cpos_called 0(05) 000034 external static bit(1) level 2 packed unaligned dcl 5-37 set ref 85* db_CFP_input defined bit(1) unaligned dcl 8-32 ref 77 dbflg 5 based structure level 2 packed unaligned dcl 7-39 dele_on defined bit(1) unaligned dcl 1-8 ref 74 dib_ptr 000212 automatic pointer initial dcl 335 set ref 242* 243 335* dq_dib based structure level 1 packed unaligned dcl 7-39 ec parameter fixed bin(35,0) dcl 24 set ref 9 101* 112* 113 122* 123 125 134* 135 137 166* 174* 175 184* 185 197* 198 255 257* 258* 283* error_table_$long_record 000024 external static fixed bin(35,0) dcl 314 ref 113 123 135 255 exclude_on 114(01) 000026 external static bit(1) level 3 packed unaligned dcl 3-12 set ref 74 243* 245* f_exc 5(22) based bit(1) level 3 packed unaligned dcl 7-39 ref 243 first_time 114 000026 external static bit(1) level 3 packed unaligned dcl 3-12 set ref 71 224* fixed builtin function dcl 306 ref 75 228 228 fn 000101 automatic fixed bin(24,0) dcl 303 set ref 227* 228* gtss_abort_subsystem_ 000040 constant entry external dcl 6-15 ref 211 gtss_abs_logout_banner_ 000042 constant entry external dcl 6-18 ref 271 gtss_dsd_process_ 000044 constant entry external dcl 6-104 ref 101 gtss_edit_dsd_ 000046 constant entry external dcl 6-105 ref 138 186 200 gtss_ext_$CFP_bits 000034 external static structure level 1 dcl 5-37 gtss_ext_$db 000032 external static bit(1) array unaligned dcl 5-10 ref 77 77 gtss_find_cond_frame_ 000050 constant entry external dcl 6-110 ref 211 211 gtss_ios_io_ 000052 constant entry external dcl 6-134 ref 228 gtss_read_starCFP_ 000054 constant entry external dcl 6-140 ref 166 174 184 197 283 gtss_starCF_$FILE 000026 external static structure level 1 dcl 3-12 gtss_ust 000030 external static structure level 2 dcl 4-16 gtss_ust_ext_$ust 000030 external static structure level 1 dcl 4-16 gtss_write_starCFP_ 000056 constant entry external dcl 6-151 ref 139 187 201 276 280 i 000100 automatic fixed bin(24,0) dcl 303 set ref 138* 139 186* 187 200* 201 initial_sect_out 133 000030 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 4-16 ref 90 225 282 ioa_ 000010 constant entry external dcl 307 ref 77 iox_$control 000016 constant entry external dcl 310 ref 257 iox_$get_line 000012 constant entry external dcl 308 ref 112 122 134 258 iox_$put_chars 000014 constant entry external dcl 309 ref 125 175 198 iox_$user_input 000020 external static pointer dcl 311 set ref 112* 122* 134* 258* iox_$user_output 000022 external static pointer dcl 312 set ref 125* 175* 198* lcfio 132 000030 external static structure level 3 dcl 4-16 lcfst 133 000030 external static structure level 3 dcl 4-16 lcjid 135 000030 external static bit(36) level 3 dcl 4-16 ref 90 lflg2 54 000030 external static structure level 3 dcl 4-16 ml parameter fixed bin(21,0) dcl 22 set ref 9 101* 112* 122* 134* 166* 174* 184* 197* 258* 283* nl_indx 000346 automatic fixed bin(24,0) dcl 290 set ref 272* 273 274 278 279 no_characters 12 000026 external static fixed bin(18,0) level 3 packed unsigned unaligned dcl 3-12 set ref 242 no_input_yet 000034 external static bit(1) level 2 packed unaligned dcl 5-37 set ref 61* 68 103* 104* 105* null builtin function dcl 306 ref 257 257 335 proper_rtn 000106 automatic entry variable dcl 316 set ref 75* 76 read_cmd constant bit(6) initial unaligned dcl 2-5 ref 226 rl parameter fixed bin(21,0) dcl 23 set ref 9 77* 77 77 85 85 85 90 90 90 97 97 100 100 100 100 101* 112* 122* 125* 134* 138* 139* 166* 174* 175* 184* 186* 187* 197* 198* 200* 201* 258* 264* 273* 274 276* 278* 279 280* 283* rtn_bits 0(01) 000034 external static bit(4) level 2 packed unaligned dcl 5-37 set ref 74* 75 rtn_table 000112 automatic entry variable initial array dcl 317 set ref 75 317* 317* 317* 317* 317* 317* 317* 317* 317* 317* 317* 317* 317* 317* 317* 317* sect_in 132(18) 000030 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 4-16 set ref 77 90 282* select_sequence 000026 external static structure level 2 dcl 3-12 set ref 228 228 228 228 start_term 133(18) 000030 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 4-16 set ref 210* status 000102 automatic fixed bin(24,0) dcl 303 set ref 228* 235 236* string based char unaligned dcl 305 set ref 85 85 90 90 97 100 100* 274* 279* substr builtin function dcl 306 set ref 77 77 85 85 90 90 100 100* 274 279 talk_on defined bit(1) unaligned dcl 1-10 ref 74 up parameter pointer dcl 20 set ref 9 101* 139* 166* 174* 184* 187* 197* 201* 257* 276* 280* 283* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. break_flag defined bit(1) unaligned dcl 1-13 cout_sector based structure level 1 packed unaligned dcl 7-66 db_ defined bit(1) unaligned dcl 8-32 db_abs defined bit(1) unaligned dcl 8-32 db_attributes_mgr defined bit(1) unaligned dcl 8-32 db_dq defined bit(1) unaligned dcl 8-32 db_drl_addmem defined bit(1) unaligned dcl 8-32 db_drl_callss defined bit(1) unaligned dcl 8-32 db_drl_defil defined bit(1) unaligned dcl 8-32 db_drl_dio defined bit(1) unaligned dcl 8-32 db_drl_filact defined bit(1) unaligned dcl 8-32 db_drl_filsp defined bit(1) unaligned dcl 8-32 db_drl_grow defined bit(1) unaligned dcl 8-32 db_drl_kin defined bit(1) unaligned dcl 8-32 db_drl_morlnk defined bit(1) unaligned dcl 8-32 db_drl_msub defined bit(1) unaligned dcl 8-32 db_drl_part defined bit(1) unaligned dcl 8-32 db_drl_retfil defined bit(1) unaligned dcl 8-32 db_drl_rew defined bit(1) unaligned dcl 8-32 db_drl_rstswh defined bit(1) unaligned dcl 8-32 db_drl_setswh defined bit(1) unaligned dcl 8-32 db_drl_switch defined bit(1) unaligned dcl 8-32 db_drl_t_cfio defined bit(1) unaligned dcl 8-32 db_expand_pathname defined bit(1) unaligned dcl 8-32 db_filact_funct02 defined bit(1) unaligned dcl 8-32 db_filact_funct03 defined bit(1) unaligned dcl 8-32 db_filact_funct04 defined bit(1) unaligned dcl 8-32 db_filact_funct05 defined bit(1) unaligned dcl 8-32 db_filact_funct10 defined bit(1) unaligned dcl 8-32 db_filact_funct11 defined bit(1) unaligned dcl 8-32 db_filact_funct14 defined bit(1) unaligned dcl 8-32 db_filact_funct18 defined bit(1) unaligned dcl 8-32 db_filact_funct19 defined bit(1) unaligned dcl 8-32 db_filact_funct21 defined bit(1) unaligned dcl 8-32 db_filact_funct22 defined bit(1) unaligned dcl 8-32 db_interp_prim defined bit(1) unaligned dcl 8-32 db_ios defined bit(1) unaligned dcl 8-32 db_mcfc defined bit(1) unaligned dcl 8-32 db_run_subsystem defined bit(1) unaligned dcl 8-32 debug_bit_names internal static structure array level 1 unaligned dcl 8-75 dq_catalog based structure level 1 packed unaligned dcl 7-23 dq_header based structure level 1 packed unaligned dcl 7-6 gtss_CFP_abort_ 000000 constant entry external dcl 6-9 gtss_CFP_break_ 000000 constant entry external dcl 6-10 gtss_CFP_input_ 000000 constant entry external dcl 6-11 gtss_CFP_output_ 000000 constant entry external dcl 6-12 gtss_abandon_CFP_ 000000 constant entry external dcl 6-13 gtss_abort_dump_ 000000 constant entry external dcl 6-14 gtss_abort_subsystem_$not_imp 000000 constant entry external dcl 6-16 gtss_abs_$abs_equiv 000000 constant entry external dcl 6-19 gtss_abs_$cpu_runout 000000 constant entry external dcl 6-20 gtss_abs_$create_absin 000000 constant entry external dcl 6-21 gtss_abs_$dabt_check 000000 constant entry external dcl 6-22 gtss_abs_$get_drm 000000 constant entry external dcl 6-24 gtss_abs_$get_id 000000 constant entry external dcl 6-23 gtss_abs_login_banner_ 000000 constant entry external dcl 6-17 gtss_adjust_size_ 000000 constant entry external dcl 6-25 gtss_aft_$add 000000 constant entry external dcl 6-26 gtss_aft_$delete 000000 constant entry external dcl 6-27 gtss_aft_$find 000000 constant entry external dcl 6-28 gtss_aft_$initialize 000000 constant entry external dcl 6-29 gtss_ascii_bcd_ 000000 constant entry external dcl 6-30 gtss_attributes_mgr_$get 000000 constant entry external dcl 6-31 gtss_attributes_mgr_$set 000000 constant entry external dcl 6-32 gtss_bcd_ascii_ 000000 constant entry external dcl 6-33 gtss_bcd_ascii_$lc 000000 constant entry external dcl 6-34 gtss_break_vector_ 000000 constant entry external dcl 6-35 gtss_break_vector_$drl_in_progress 000000 constant entry external dcl 6-36 gtss_break_vector_$status 000000 constant entry external dcl 6-37 gtss_build_ 000000 constant entry external dcl 6-38 gtss_com_err_ 000000 constant entry external dcl 6-39 gtss_derail_processor_ 000000 constant entry external dcl 6-40 gtss_derail_processor_$set 000000 constant entry external dcl 6-41 gtss_dq_$catp 000000 constant entry external dcl 6-42 gtss_dq_$create 000000 constant entry external dcl 6-43 gtss_dq_$dibp 000000 constant entry external dcl 6-44 gtss_dq_$entries_info 000000 constant entry external dcl 6-45 gtss_dq_$hdrp 000000 constant entry external dcl 6-46 gtss_dq_$mod_js 000000 constant entry external dcl 6-47 gtss_dq_$open_exc 000000 constant entry external dcl 6-48 gtss_dq_$open_gen 000000 constant entry external dcl 6-49 gtss_drl_abort_ 000000 constant entry external dcl 6-50 gtss_drl_addmem_ 000000 constant entry external dcl 6-51 gtss_drl_callss_ 000000 constant entry external dcl 6-52 gtss_drl_corfil_ 000000 constant entry external dcl 6-53 gtss_drl_defil_ 000000 constant entry external dcl 6-54 gtss_drl_defil_$subr 000000 constant entry external dcl 6-55 gtss_drl_dio_ 000000 constant entry external dcl 6-56 gtss_drl_drlimt_ 000000 constant entry external dcl 6-57 gtss_drl_drlsav_ 000000 constant entry external dcl 6-58 gtss_drl_filact_ 000000 constant entry external dcl 6-59 gtss_drl_filsp_ 000000 constant entry external dcl 6-60 gtss_drl_grow_ 000000 constant entry external dcl 6-61 gtss_drl_gwake_ 000000 constant entry external dcl 6-62 gtss_drl_jsts_ 000000 constant entry external dcl 6-63 gtss_drl_kin_ 000000 constant entry external dcl 6-64 gtss_drl_kotnow_ 000000 constant entry external dcl 6-65 gtss_drl_kotnow_$gtss_drl_kout_ 000000 constant entry external dcl 6-66 gtss_drl_koutn_ 000000 constant entry external dcl 6-67 gtss_drl_morlnk_ 000000 constant entry external dcl 6-68 gtss_drl_msub_ 000000 constant entry external dcl 6-69 gtss_drl_objtim_ 000000 constant entry external dcl 6-70 gtss_drl_part_ 000000 constant entry external dcl 6-71 gtss_drl_pasaft_ 000000 constant entry external dcl 6-72 gtss_drl_pasdes_ 000000 constant entry external dcl 6-73 gtss_drl_pasust_ 000000 constant entry external dcl 6-74 gtss_drl_pdio_ 000000 constant entry external dcl 6-75 gtss_drl_prgdes_ 000000 constant entry external dcl 6-76 gtss_drl_pseudo_ 000000 constant entry external dcl 6-77 gtss_drl_relmem_ 000000 constant entry external dcl 6-78 gtss_drl_restor_ 000000 constant entry external dcl 6-79 gtss_drl_retfil_ 000000 constant entry external dcl 6-80 gtss_drl_return_ 000000 constant entry external dcl 6-81 gtss_drl_rew_ 000000 constant entry external dcl 6-82 gtss_drl_rstswh_ 000000 constant entry external dcl 6-83 gtss_drl_setlno_ 000000 constant entry external dcl 6-84 gtss_drl_setswh_ 000000 constant entry external dcl 6-85 gtss_drl_snumb_ 000000 constant entry external dcl 6-86 gtss_drl_spawn_ 000000 constant entry external dcl 6-87 gtss_drl_spawn_$gtss_drl_pasflr_ 000000 constant entry external dcl 6-88 gtss_drl_stoppt_ 000000 constant entry external dcl 6-89 gtss_drl_switch_ 000000 constant entry external dcl 6-90 gtss_drl_sysret_ 000000 constant entry external dcl 6-91 gtss_drl_t_cfio_ 000000 constant entry external dcl 6-92 gtss_drl_t_cmov_ 000000 constant entry external dcl 6-93 gtss_drl_t_err_ 000000 constant entry external dcl 6-94 gtss_drl_t_goto_ 000000 constant entry external dcl 6-95 gtss_drl_t_linl_ 000000 constant entry external dcl 6-96 gtss_drl_t_rscc_ 000000 constant entry external dcl 6-97 gtss_drl_tapein_ 000000 constant entry external dcl 6-98 gtss_drl_task_ 000000 constant entry external dcl 6-99 gtss_drl_termtp_ 000000 constant entry external dcl 6-100 gtss_drl_time_ 000000 constant entry external dcl 6-101 gtss_drun_ 000000 constant entry external dcl 6-102 gtss_dsd_lookup_ 000000 constant entry external dcl 6-103 gtss_expand_pathname_ 000000 constant entry external dcl 6-107 gtss_expand_pathname_$verify_umc 000000 constant entry external dcl 6-108 gtss_ext_$SYstarstar_file_no external static fixed bin(24,0) dcl 5-33 gtss_ext_$aem external static fixed bin(17,0) dcl 5-8 gtss_ext_$aft external static structure level 1 dcl 5-78 gtss_ext_$bad_drl_rtrn external static label variable dcl 5-9 gtss_ext_$com_reg external static structure level 1 dcl 5-45 gtss_ext_$deferred_catalogs_ptr external static pointer dcl 5-11 gtss_ext_$dispose_of_drl external static label variable dcl 5-12 gtss_ext_$drl_rtrn external static label variable array dcl 5-13 gtss_ext_$drm_path external static char(168) unaligned dcl 5-14 gtss_ext_$drun_jid external static char(5) unaligned dcl 5-15 gtss_ext_$event_channel external static fixed bin(71,0) dcl 5-16 gtss_ext_$fast_lib external static structure level 1 dcl 5-98 gtss_ext_$finished external static label variable dcl 5-17 gtss_ext_$flags external static structure level 1 dcl 5-60 gtss_ext_$gdb_name external static char(8) unaligned dcl 5-18 gtss_ext_$get_line external static entry variable dcl 5-19 gtss_ext_$gtss_slave_area_seg external static pointer array dcl 5-20 gtss_ext_$hcs_work_area_ptr external static pointer dcl 5-21 gtss_ext_$homedir external static char(64) unaligned dcl 5-22 gtss_ext_$last_k_was_out external static bit(1) dcl 5-23 gtss_ext_$mcfc external static structure level 1 dcl 5-109 gtss_ext_$pdir external static varying char(168) dcl 5-24 gtss_ext_$popup_from_pi external static label variable dcl 5-25 gtss_ext_$ppt external static pointer dcl 5-94 gtss_ext_$process_type external static fixed bin(17,0) dcl 5-26 gtss_ext_$put_chars external static entry variable dcl 5-27 gtss_ext_$restart_from_pi external static label variable dcl 5-28 gtss_ext_$restart_seg_ptr external static pointer dcl 5-29 gtss_ext_$sig_ptr external static pointer dcl 5-30 gtss_ext_$stack_level_ external static fixed bin(17,0) dcl 5-31 gtss_ext_$statistics external static structure level 1 dcl 5-72 gtss_ext_$suspended_process external static bit(1) unaligned dcl 5-32 gtss_ext_$user_id external static varying char(26) dcl 5-34 gtss_ext_$work_area_ptr external static pointer dcl 5-35 gtss_fail 000000 stack reference condition dcl 313 gtss_fault_processor_ 000000 constant entry external dcl 6-109 gtss_fault_processor_$timer_runout 000000 constant entry external dcl 6-111 gtss_filact_error_status_ 000000 constant entry external dcl 6-112 gtss_filact_funct02_ 000000 constant entry external dcl 6-113 gtss_filact_funct03_ 000000 constant entry external dcl 6-114 gtss_filact_funct04_ 000000 constant entry external dcl 6-115 gtss_filact_funct05_ 000000 constant entry external dcl 6-116 gtss_filact_funct08_ 000000 constant entry external dcl 6-117 gtss_filact_funct10_ 000000 constant entry external dcl 6-118 gtss_filact_funct11_ 000000 constant entry external dcl 6-119 gtss_filact_funct14_ 000000 constant entry external dcl 6-120 gtss_filact_funct18_ 000000 constant entry external dcl 6-121 gtss_filact_funct19_ 000000 constant entry external dcl 6-122 gtss_filact_funct21_ 000000 constant entry external dcl 6-123 gtss_filact_funct22_ 000000 constant entry external dcl 6-124 gtss_interp_prim_ 000000 constant entry external dcl 6-126 gtss_interp_prim_$callss 000000 constant entry external dcl 6-127 gtss_interp_prim_$sysret 000000 constant entry external dcl 6-128 gtss_interp_prim_$t_goto 000000 constant entry external dcl 6-129 gtss_ios_change_size_ 000000 constant entry external dcl 6-130 gtss_ios_close_ 000000 constant entry external dcl 6-131 gtss_ios_exchange_names_ 000000 constant entry external dcl 6-132 gtss_ios_initialize_ 000000 constant entry external dcl 6-133 gtss_ios_open_ 000000 constant entry external dcl 6-135 gtss_ios_position_ 000000 constant entry external dcl 6-136 gtss_mcfc_$close 000000 constant entry external dcl 6-139 gtss_mcfc_$delete 000000 constant entry external dcl 6-137 gtss_mcfc_$open 000000 constant entry external dcl 6-138 gtss_mcfc_empty 000000 constant entry external dcl 6-106 gtss_mcfc_init_ 000000 constant entry external dcl 6-125 gtss_read_starCFP_$last_os 000000 constant entry external dcl 6-141 gtss_run_subsystem_ 000000 constant entry external dcl 6-142 gtss_run_subsystem_$finish 000000 constant entry external dcl 6-143 gtss_run_subsystem_$restor 000000 constant entry external dcl 6-144 gtss_run_subsystem_$restor_perm 000000 constant entry external dcl 6-145 gtss_set_slave_ 000000 constant entry external dcl 6-146 gtss_set_slave_$load_bar 000000 constant entry external dcl 6-147 gtss_update_safe_store_ 000000 constant entry external dcl 6-148 gtss_verify_access_ 000000 constant entry external dcl 6-149 gtss_verify_access_$check_forced_access 000000 constant entry external dcl 6-150 l automatic fixed bin(24,0) dcl 303 l_idx automatic fixed bin(24,0) dcl 303 seek_cmd internal static bit(6) initial unaligned dcl 2-6 trap_off defined bit(1) unaligned dcl 1-12 user_code defined bit(1) unaligned dcl 1-11 write_cmd internal static bit(6) initial unaligned dcl 2-7 NAMES DECLARED BY EXPLICIT CONTEXT. action_1 000601 constant entry internal dcl 110 ref 317 317 317 317 action_2 000643 constant entry internal dcl 120 ref 317 317 action_3 000736 constant entry internal dcl 132 ref 317 317 action_5 001050 constant entry internal dcl 164 ref 317 317 317 action_6 001077 constant entry internal dcl 172 ref 317 317 317 action_7 001157 constant entry internal dcl 182 ref 317 action_8 001256 constant entry internal dcl 195 ref 317 bug_complaint 001376 constant entry internal dcl 208 ref 126 141 176 189 203 238 287 end_of_drun 001751 constant entry internal dcl 268 ref 90 gtss_CFP_input_ 000135 constant entry external dcl 9 long_line 001613 constant entry internal dcl 251 ref 113 123 135 set_exclude 001461 constant entry internal dcl 222 ref 71 NAMES DECLARED BY CONTEXT OR IMPLICATION. addr builtin function ref 228 228 228 228 228 228 242 index builtin function ref 97 272 length builtin function ref 278 rel builtin function ref 228 228 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 2562 2642 2223 2572 Length 3260 2223 60 401 337 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME gtss_CFP_input_ 354 external procedure is an external procedure. action_1 76 internal procedure is assigned to an entry variable. action_2 76 internal procedure is assigned to an entry variable. action_3 76 internal procedure is assigned to an entry variable. action_5 76 internal procedure is assigned to an entry variable. action_6 76 internal procedure is assigned to an entry variable. action_7 76 internal procedure is assigned to an entry variable. action_8 76 internal procedure is assigned to an entry variable. bug_complaint 112 internal procedure is called by several nonquick procedures. set_exclude internal procedure shares stack frame of external procedure gtss_CFP_input_. long_line 106 internal procedure is called by several nonquick procedures. end_of_drun internal procedure shares stack frame of external procedure gtss_CFP_input_. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME gtss_CFP_input_ 000100 i gtss_CFP_input_ 000101 fn gtss_CFP_input_ 000102 status gtss_CFP_input_ 000103 attempts gtss_CFP_input_ 000104 code gtss_CFP_input_ 000106 proper_rtn gtss_CFP_input_ 000112 rtn_table gtss_CFP_input_ 000212 dib_ptr gtss_CFP_input_ 000232 buffer end_of_drun 000346 nl_indx end_of_drun THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. alloc_cs cat_realloc_cs call_var call_ext_out_desc call_ext_out call_int_this call_int_other return shorten_stack ext_entry int_entry set_cs_eis index_cs_eis THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_ gtss_abort_subsystem_ gtss_abs_logout_banner_ gtss_dsd_process_ gtss_edit_dsd_ gtss_find_cond_frame_ gtss_ios_io_ gtss_read_starCFP_ gtss_write_starCFP_ ioa_ iox_$control iox_$get_line iox_$put_chars THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. error_table_$long_record gtss_ext_$CFP_bits gtss_ext_$db gtss_starCF_$FILE gtss_ust_ext_$ust iox_$user_input iox_$user_output LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 9 000130 304 000142 317 000143 335 000305 61 000307 68 000311 71 000316 74 000324 75 000357 76 000367 77 000373 85 000444 90 000466 97 000516 100 000536 101 000547 102 000565 103 000566 104 000571 105 000574 107 000576 352 000577 110 000600 112 000606 113 000626 116 000641 120 000642 122 000650 123 000670 125 000703 126 000724 128 000734 132 000735 134 000743 135 000763 137 000776 138 001002 139 001015 141 001036 143 001046 164 001047 166 001055 168 001075 172 001076 174 001104 175 001124 176 001145 178 001155 182 001156 184 001164 185 001204 186 001210 187 001223 189 001244 191 001254 195 001255 197 001263 198 001303 199 001324 200 001327 201 001343 203 001364 205 001374 208 001375 210 001403 211 001406 217 001460 222 001461 224 001462 225 001466 226 001473 227 001475 228 001477 235 001530 236 001532 238 001565 239 001571 242 001572 243 001576 245 001606 247 001611 251 001612 253 001620 254 001623 255 001630 256 001635 257 001664 258 001720 259 001741 260 001743 261 001744 262 001745 264 001746 266 001750 268 001751 271 001752 272 001777 273 002012 274 002015 276 002062 277 002100 278 002102 279 002107 280 002142 281 002160 282 002162 283 002170 287 002207 292 002215 ----------------------------------------------------------- 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