COMPILATION LISTING OF SEGMENT gtss_dump_program_stack_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1303.3 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * * 4* * Copyright, (C) Honeywell Information Systems Inc., 1981 * 5* * * 6* * * 7* *********************************************************** */ 8 9 /* ************************************************************* 10* * * 11* * Copyright (c) 1979 by Honeywell Information Systems, Inc. * 12* * * 13* ************************************************************* */ 14 gtss_dump_program_stack_: dps: proc; 15 16 /* Program to dump program and callss stacks for debugging purposes. 17* 18* Authors: Robert J. Grimes Created 19* Albert N. Kepner 1978 20* Robert M. May 21* David B. Ward 22**/ 23 24 dcl i fixed bin (24); 25 dcl j fixed bin (24); 26 dcl k fixed bin (24); 27 dcl l fixed bin (24); 28 dcl ioa_ entry options (variable); 29 30 i = gtss_ust.lxxx.b0_17 - fixed (rel (addr (gtss_ust.lxxx))) 31 + fixed (rel (addr (gtss_ust))); 32 call ioa_ ("^/Program Stack:"); 33 call ioa_ ("current depth = ^i.", i); 34 do j = 1 to i; 35 k = lprgs.b0_17 (j); 36 l = lprgs.b18_35 (j); 37 call ioa_ ("Descriptor: ^a Primitive: ^o", ss_name (k), l); 38 end; 39 call ioa_ ("^/CALLSS Stack:"); 40 i = divide (gtss_ust.lcals.b0_17 - fixed (rel (addr (gtss_ust.lcals))) + 41 fixed (rel (addr (gtss_ust))), 2, 24, 0); 42 call ioa_ ("current depth = ^i.", i); 43 do j = 1 to i; 44 call ioa_ ("Program stack reference = ^i; ss_flags = ^o.", 45 subsystems (j).tally_address 46 -fixed (rel (addr (gtss_ust.lxxx)))+fixed (rel (addr (gtss_ust))), 47 fixed (subsystems (j).ss_flags)); 48 end; 49 call ioa_ ("gtss_ext_$stack_level_ = ^i.", 50 gtss_ext_$stack_level_); 1 1 /* BEGIN INCLUDE FILE gtss_prgdes_.incl.pl1 */ 1 2 /* 1 3* Created: Kepner 04/12/78 1 4* Modified: Ron Barstad 82-08-11 to change size of prgdes array for 4js3 1 5* Modified: Ron Barstad 83-05-19 change size of prgdes array for update 7 1 6**/ 1 7 1 8 /* 1 9* " This structure describes the timesharing subsystem program 1 10* " descriptors. 1 11* " 1 12* " Anywhere fixed bin(17) unal appears it should be noted that GCOS 1 13* " can potentially make use of all 18 bits and caution should be 1 14* " exercised. These items should be changed to fixed bin(18) 1 15* " usigned unal when this feature is added to the PL/I compiler. 1 16* " 1 17* " ss_name subsystem name 1 18* " 1 19* " program_size actual program size to be used in execution. 1 20* " 1 21* " load_size the size remaining when all leading and trailing zeros 1 22* " have been eliminated. This is used to reduce the size 1 23* " of the original copy of the program. 1 24* " 1 25* " entry_point address relative to zero that contains the first 1 26* " executable instruction. 1 27* " 1 28* " parameters flags defining attributes of the subsystem. The flag 1 29* " bits are defined below. Assume bits are numbered 1-18. 1 30* " 1 cache 1 31* " 2 .BSCF 1 32* " 3 special size request 1 33* " 4 drl t.exec permission. 1 34* " 5 drl t.cmov permission 1 35* " 6 special product offering. 1 36* " 7 high use program file, #p 1 37* " 8 special file switch (perm/temp) allowed. 1 38* " 9 ss not callable at system level. 1 39* " 10 subsystem allowed use of get-specific. 1 40* " 11 execute permission allowed for file i/o. 1 41* " 12 subsystem can read system master catalog. 1 42* " 13 basic or databasic 1 43* " 14 subsystem uses common command list. 1 44* " 15 low use subsystem (# q file) 1 45* " 16 subsystem must be patched when loaded. 1 46* " 17 master subsystem. 1 47* " 18 privileged subsystem. 1 48* " 1 49* " seek_address the word offset in the multisegment file 1 50* " component where the object code for this subsystem is 1 51* " stored. 1 52* " 1 53* " initial_load_address The address of the first nonzero word in 1 54* " the program. 1 55* " 1 56* " cmd_lang_offset The word offset into gtss_prgdes_ext_$primitives 1 57* " (suitable for use with addrel) of the command language 1 58* " list for this subsystem. 1 59* " 1 60* " cmd_lang_len Number of command names for this subsystem. 1 61* " 1 62* " statistics 1 63* " 1 64* " bci_catalog_name The GECALL name for the subsystem. 1 65* " 1 66* " library an integer which indicates which multisegment file 1 67* " contains the object code for this subsystem. 1 68* " 1 69* " component an integer which indicates which component of the 1 70* " multisegment file contains the object code for this 1 71* " subsystem. 1 72* " 1 73* " ss_name_len The number of nonblank characters in the subsystem 1 74* " name. 1 75**/ 1 76 1 77 dcl 1 gtss_prgdes_ext_$prgdes (302) aligned ext, 1 78 2 ss_name char (4) aligned, 1 79 2 program_size fixed bin (17) unal, 1 80 2 load_size fixed bin (17) unal, 1 81 2 entry_point fixed bin (17) unal, 1 82 2 parameters bit (18) unal, 1 83 2 seek_address bit(18) unal, 1 84 2 initial_load_address fixed bin (17) unal, 1 85 2 cmd_lang_offset fixed bin (17) unal, 1 86 2 cmd_lang_len fixed bin (17) unal, 1 87 2 statistics, 1 88 3 calls fixed bin (17) unal, 1 89 3 loads fixed bin (17) unal, 1 90 3 filler (3) bit (36) unal, 1 91 2 bci_catalog_name bit (36) aligned, 1 92 2 library fixed bin (17) unal, 1 93 2 component fixed bin (17) unal, 1 94 2 ss_name_len fixed bin (17) aligned; 1 95 1 96 1 97 1 98 /* This overlay structure is used to pass the user visible portion 1 99* of the program descriptor to the subsystem via DRL PRGDES. */ 1 100 dcl 1 prgdes_ov (302) aligned based (addr (gtss_prgdes_ext_$prgdes)), 1 101 2 first_9_words char (36), /* user visible portion */ 1 102 2 filler char (12); 1 103 1 104 /* END INCLUDE FILE gtss_prgdes_.incl.pl1 */ 51 2 1 /* BEGIN INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 2 2 /* UST: User Status Table 2 3* definitions based on 2 4* System Tables, Order number DD14-01E, January 1981 2 5* Section 15, Time Sharing System 2 6* 2 7* Authors: Robert J. Grimes Created 2 8* - Albert N. Kepner 1978 2 9* - Robert M. May 2 10* - David B. Ward 2 11* Change: Dave Ward 02/23/79 Level 4 numbering. 2 12* Change: Ron Barstad 83-07-12 Repaired damaged formating and word offset comments 2 13* Brought up to 4JS3 functionality 2 14**/ 2 15 /* octal word offsets of entries */ 2 16 dcl 1 gtss_ust_ext_$ust aligned ext, 2 17 3 gtss_ust, 2 18 /* 0-1 */ 4 lid bit (72), 2 19 /* 2 */ 4 lstp bit (36), 2 20 /* 3 */ 4 ltin bit (36), 2 21 /* 4 */ 4 lstio, 2 22 5 no_of_chars_by_8 fixed bin (18) uns unal, 2 23 5 no_of_disk_io fixed bin (18) uns unal, 2 24 /* 5 */ 4 lsnub bit (36), 2 25 /* 6-7 */ 4 lchg bit (72), 2 26 /* 10 */ 4 lbuf, 2 27 5 address bit (18)unaligned, 2 28 5 tally bit (1)unaligned, 2 29 5 terminal_type bit (5)unaligned, 2 30 5 station_id bit (12)unaligned, 2 31 /* 11-12 */ 4 liost (0:1) bit (36), 2 32 /* 13 */ 4 lcc bit (36), 2 33 /* 14 */ 4 lback, 2 34 5 fill1 bit (18) unaligned, 2 35 5 gwake fixed bin (17) unaligned, 2 36 /* 15 */ 4 lflag, 2 37 5 mp_list bit (18) unaligned, 2 38 5 flags unaligned, 2 39 6 b18 bit (1) unaligned, 2 40 6 b19 bit (1) unaligned, 2 41 6 b20 bit (1) unaligned, 2 42 6 b21 bit (1) unaligned, 2 43 6 b22 bit (1) unaligned, 2 44 6 b23 bit (1) unaligned, 2 45 6 b24 bit (1) unaligned, 2 46 6 b25 bit (1) unaligned, 2 47 6 b26 bit (1) unaligned, 2 48 6 b27 bit (1) unaligned, 2 49 6 b28 bit (1) unaligned, 2 50 6 b29 bit (1) unaligned, 2 51 6 b30 bit (1) unaligned, 2 52 6 b31 bit (1) unaligned, 2 53 6 b32 bit (1) unaligned, 2 54 6 b33 bit (1) unaligned, 2 55 6 b34 bit (1) unaligned, 2 56 6 b35 bit (1) unaligned, 2 57 /* 16 */ 4 lkdss bit (36), 2 58 /* 17 */ 4 lfile, 2 59 5 program_stack fixed bin (17) unal, 2 60 5 file_list_ptr bit (18) unal, 2 61 /* 20 */ 4 lttys bit (36), 2 62 /* 21 */ 4 lswth, 2 63 5 b0 bit (1) unaligned, 2 64 5 b1 bit (1) unaligned, 2 65 5 b2 bit (1) unaligned, 2 66 5 b3 bit (1) unaligned, 2 67 5 b4 bit (1) unaligned, 2 68 5 b5 bit (1) unaligned, 2 69 5 b6 bit (1) unaligned, 2 70 5 b7 bit (1) unaligned, 2 71 5 b8 bit (1) unaligned, 2 72 5 b9 bit (1) unaligned, 2 73 5 b10 bit (1) unaligned, 2 74 5 b11 bit (1) unaligned, 2 75 5 b12 bit (1) unaligned, 2 76 5 b13 bit (1) unaligned, 2 77 5 b14 bit (1) unaligned, 2 78 5 b15 bit (1) unaligned, 2 79 5 b16 bit (1) unaligned, 2 80 5 b17 bit (1) unaligned, 2 81 5 b18 bit (1) unaligned, 2 82 5 b19 bit (1) unaligned, 2 83 5 b20 bit (1) unaligned, 2 84 5 b21 bit (1) unaligned, 2 85 5 b22 bit (1) unaligned, 2 86 5 b23 bit (1) unaligned, 2 87 5 b24 bit (1) unaligned, 2 88 5 b25 bit (1) unaligned, 2 89 5 b26 bit (1) unaligned, 2 90 5 b27 bit (1) unaligned, 2 91 5 b28 bit (1) unaligned, 2 92 5 b29 bit (1) unaligned, 2 93 5 b30 bit (1) unaligned, 2 94 5 b31 bit (1) unaligned, 2 95 5 b32 bit (1) unaligned, 2 96 5 b33 bit (1) unaligned, 2 97 5 b34 bit (1) unaligned, 2 98 5 b35 bit (1) unaligned, 2 99 /* 22 */ 4 lsize, 2 100 5 bar fixed bin (17) unaligned, 2 101 5 limit bit (18) unaligned, 2 102 /* 23... */ 4 lswap, 2 103 5 fill bit (18) unal, 2 104 5 size bit (18) unal, 2 105 /* ...24 */ 4 transfer_cell bit (36) unal, 2 106 /* 25 */ 4 lerrm bit (36), 2 107 /* 26-37 */ 4 lcfil (0:9) bit (36), 2 108 /* 40 */ 4 lsybc, 2 109 5 b0_17 fixed bin (17) unaligned, 2 110 5 b18_35 fixed bin (17) unaligned, 2 111 /* 41-42 */ 4 lstem (0:1) bit (36), 2 112 /* 43 */ 4 lcals, 2 113 5 b0_17 fixed bin (17) unaligned, 2 114 5 b18_35 bit (18) unaligned, 2 115 /* 44-51 */ 4 subsystems (3), 2 116 5 content_lswap, 2 117 6 fill bit (18) unal, 2 118 6 size bit (18) unal, 2 119 5 tally_address fixed bin (17) unaligned, 2 120 5 ss_flags bit (18) unaligned, 2 121 /* 52 */ 4 ltalc, 2 122 5 tod fixed bin (17) unaligned, 2 123 5 startup fixed bin (17) unaligned, 2 124 /* 53 */ 4 lspts fixed bin (35), 2 125 /* 54 */ 4 lflg2, 2 126 5 b0 bit (1) unaligned, 2 127 5 b1 bit (1) unaligned, 2 128 5 b2 bit (1) unaligned, 2 129 5 b3 bit (1) unaligned, 2 130 5 b4 bit (1) unaligned, 2 131 5 b5 bit (1) unaligned, 2 132 5 b6 bit (1) unaligned, 2 133 5 b7 bit (1) unaligned, 2 134 5 b8 bit (1) unaligned, 2 135 5 b9 bit (1) unaligned, 2 136 5 b10 bit (1) unaligned, 2 137 5 b11 bit (1) unaligned, 2 138 5 b12 bit (1) unaligned, 2 139 5 b13 bit (1) unaligned, 2 140 5 b14 bit (1) unaligned, 2 141 5 b15 bit (1) unaligned, 2 142 5 b16 bit (1) unaligned, 2 143 5 b17 bit (1) unaligned, 2 144 5 b18 bit (1) unaligned, 2 145 5 b19 bit (1) unaligned, 2 146 5 b20 bit (1) unaligned, 2 147 5 b21 bit (1) unaligned, 2 148 5 b22 bit (1) unaligned, 2 149 5 b23 bit (1) unaligned, 2 150 5 b24 bit (1) unaligned, 2 151 5 b25 bit (1) unaligned, 2 152 5 b26 bit (1) unaligned, 2 153 5 b27 bit (1) unaligned, 2 154 5 b28 bit (1) unaligned, 2 155 5 b29 bit (1) unaligned, 2 156 5 b30 bit (1) unaligned, 2 157 5 b31 bit (1) unaligned, 2 158 5 b32 bit (1) unaligned, 2 159 5 b33 bit (1) unaligned, 2 160 5 b34 bit (1) unaligned, 2 161 5 b35 bit (1) unaligned, 2 162 /* 55-60 */ 4 lsftm (0:3) bit (36), 2 163 /* 61 */ 4 lsprt fixed bin (35), 2 164 /* 62 */ 4 ltrm bit (36), 2 165 /* 63 */ 4 linno fixed bin (35), 2 166 /* 64 */ 4 lincr fixed bin (35), 2 167 /* 65 */ 4 ltdes bit (36), 2 168 /* 66 */ 4 lbptr bit (36), 2 169 /* 67 */ 4 lpptr, 2 170 5 last_file_pat_ptr bin (18) uns unal, 2 171 5 lpptr_reserved bin (18) uns unal, 2 172 /* 70 */ 4 lsclp bit (36), 2 173 /* 71 */ 4 limit fixed bin (35), 2 174 /* 72 */ 4 lacpt, 2 175 5 jout_pat_offset bit (18) unal, 2 176 5 permissions unal, 2 177 6 lodx bit (1) unal, 2 178 6 cardin bit (1) unal, 2 179 6 talk bit (1) unal, 2 180 6 lods bit (1) unal, 2 181 5 cardin_urgency bit (14) unal, 2 182 /* 73 */ 4 ldrl, 2 183 5 ilc bit (18) unaligned, 2 184 5 code fixed bin (17) unaligned, 2 185 /* 74 */ 4 ljsnb bit (36), 2 186 /* 75 */ 4 ltm0 bit (36), 2 187 /* 76 */ 4 ltm1 bit (36), 2 188 /* 77 */ 4 ltm2 bit (36), 2 189 /* 100 */ 4 ltm3 bit (36), 2 190 /* 101 */ 4 ltm4 bit (36), 2 191 /* 102 */ 4 ltm5 bit (36), 2 192 /* 103 */ 4 ltmwt bit (36), 2 193 /* 104 */ 4 ltmrs bit (36), 2 194 /* 105 */ 4 ltc0 bit (36), 2 195 /* 106 */ 4 ltc1 bit (36), 2 196 /* 107 */ 4 ltc2 bit (36), 2 197 /* 110 */ 4 lct3 bit (36), 2 198 /* 111 */ 4 ltc4 bit (36), 2 199 /* 112 */ 4 ltc5 bit (36), 2 200 /* 113 */ 4 ltcw bit (36), 2 201 /* 114 */ 4 lkst bit (36), 2 202 /* 115 */ 4 lkst2 bit (36), 2 203 /* 116 */ 4 lkcc bit (36), 2 204 /* 117 */ 4 lkms bit (36), 2 205 /* 120-121 */ 4 lksdc (0:1) bit (36), 2 206 /* 122 */ 4 lkntp bit (36), 2 207 /* 123 */ 4 lkrdc bit (36), 2 208 /* 124 */ 4 lpqf bit (36), 2 209 /* 125 */ 4 lpqb bit (36), 2 210 /* 126 */ 4 lustl bit (36), 2 211 /* 127 */ 4 ltemp bit (36), 2 212 /* 130 */ 4 lrtll, 2 213 5 word_length fixed bin unaligned, 2 214 5 char_length fixed bin unaligned, 2 215 /* 131 */ 4 ltim bit (36), 2 216 /* 132 */ 4 lcfio, 2 217 5 sect_out fixed bin(18)unsigned unal, 2 218 5 sect_in fixed bin(18)unsigned unal, 2 219 /* 133 */ 4 lcfst, 2 220 5 initial_sect_out fixed bin(18)unsigned unal, 2 221 5 start_term fixed bin(18)unsigned unal, 2 222 /* 134 */ 4 lcmpt bit (36), 2 223 /* 135 */ 4 lcjid bit (36), 2 224 /* 136-137 */ 4 lrcal (0:1) bit (36), 2 225 /* 140 */ 4 lrdta bit (36), 2 226 /* 141 */ 4 lrrsk bit (36), 2 227 /* 142 */ 4 lrskd bit (36), 2 228 /* 143 */ 4 lrcc bit (36), 2 229 /* 144-145 */ 4 lrsts (0:1) bit (36), 2 230 /* 146 */ 4 lrtm bit (36), 2 231 /* 147 */ 4 lswt2, 2 232 5 b0 bit (1) unaligned, 2 233 5 b1 bit (1) unaligned, 2 234 5 b2 bit (1) unaligned, 2 235 5 b3 bit (1) unaligned, 2 236 5 b4 bit (1) unaligned, 2 237 5 b5 bit (1) unaligned, 2 238 5 b6 bit (1) unaligned, 2 239 5 b7 bit (1) unaligned, 2 240 5 b8 bit (1) unaligned, 2 241 5 b9 bit (1) unaligned, 2 242 5 b10 bit (1) unaligned, 2 243 5 b11 bit (1) unaligned, 2 244 5 b12 bit (1) unaligned, 2 245 5 b13 bit (1) unaligned, 2 246 5 b14 bit (1) unaligned, 2 247 5 b15 bit (1) unaligned, 2 248 5 b16 bit (1) unaligned, 2 249 5 b17 bit (1) unaligned, 2 250 5 b18 bit (1) unaligned, 2 251 5 b19 bit (1) unaligned, 2 252 5 b20 bit (1) unaligned, 2 253 5 b21 bit (1) unaligned, 2 254 5 b22 bit (1) unaligned, 2 255 5 b23 bit (1) unaligned, 2 256 5 b24 bit (1) unaligned, 2 257 5 b25 bit (1) unaligned, 2 258 5 b26 bit (1) unaligned, 2 259 5 b27 bit (1) unaligned, 2 260 5 b28 bit (1) unaligned, 2 261 5 b29 bit (1) unaligned, 2 262 5 b30 bit (1) unaligned, 2 263 5 b31 bit (1) unaligned, 2 264 5 b32 bit (1) unaligned, 2 265 5 b33 bit (1) unaligned, 2 266 5 b34 bit (1) unaligned, 2 267 5 b35 bit (1) unaligned, 2 268 /* 150 */ 4 llsnb bit (36), 2 269 /* 151 */ 4 lesq bit (36), 2 270 /* 152-153 */ 4 lumc (0:1) bit (36), 2 271 /* 154-155 */ 4 lfnam (0:1) bit (36), 2 272 /* 156 */ 4 lopts bit (36), 2 273 /* 157 */ 4 licec, 2 274 5 b0_17 bit (18) unaligned, 2 275 5 b18_35 fixed bin (17) unaligned, 2 276 /* 160 */ 4 lflg3, 2 277 5 b0 bit (1) unaligned, 2 278 5 b1 bit (1) unaligned, 2 279 5 b2 bit (1) unaligned, 2 280 5 b3 bit (1) unaligned, 2 281 5 b4 bit (1) unaligned, 2 282 5 b5 bit (1) unaligned, 2 283 5 b6 bit (1) unaligned, 2 284 5 b7 bit (1) unaligned, 2 285 5 b8 bit (1) unaligned, 2 286 5 b9 bit (1) unaligned, 2 287 5 b10 bit (1) unaligned, 2 288 5 b11 bit (1) unaligned, 2 289 5 b12 bit (1) unaligned, 2 290 5 b13 bit (1) unaligned, 2 291 5 b14 bit (1) unaligned, 2 292 5 b15 bit (1) unaligned, 2 293 5 b16 bit (1) unaligned, 2 294 5 b17 bit (1) unaligned, 2 295 5 b18 bit (1) unaligned, 2 296 5 b19 bit (1) unaligned, 2 297 5 b20 bit (1) unaligned, 2 298 5 b21 bit (1) unaligned, 2 299 5 b22 bit (1) unaligned, 2 300 5 b23 bit (1) unaligned, 2 301 5 b24 bit (1) unaligned, 2 302 5 b25 bit (1) unaligned, 2 303 5 b26 bit (1) unaligned, 2 304 5 b27 bit (1) unaligned, 2 305 5 b28 bit (1) unaligned, 2 306 5 b29 bit (1) unaligned, 2 307 5 b30 bit (1) unaligned, 2 308 5 b31 bit (1) unaligned, 2 309 5 b32 bit (1) unaligned, 2 310 5 b33 bit (1) unaligned, 2 311 5 b34 bit (1) unaligned, 2 312 5 b35 bit (1) unaligned, 2 313 /* 161-163 */ 4 lpage (0:2) bit (36), 2 314 /* 164 */ 4 lsit1 bit (36), 2 315 /* 165 */ 4 lsit2 bit (36), 2 316 /* 166 */ 4 lsit3 bit (36), 2 317 /* 167 */ 4 lsit4 bit (36), 2 318 /* The following entries are maintained by gtss and are not found in TSS UST */ 2 319 /* 170 */ 4 lxxx, /* program stack index, offset from gtss_ust */ 2 320 5 b0_17 fixed bin (17) unaligned, 2 321 5 b18_35 bit (18) unaligned, /* not used */ 2 322 /* 171-175 */ 4 lprgs (5), 2 323 5 b0_17 fixed bin (17) unaligned, 2 324 5 b18_35 fixed bin (17) unaligned, 2 325 /* 176 */ 4 fill bit (36), 2 326 /* 177 */ 4 remote_io_buffer aligned, 2 327 5 buffer_control_word, 2 328 6 current_line_pointer bit (18)unal, 2 329 6 buffer_threshold_address bit (18)unal, 2 330 5 number_words_transmitted fixed bin (17)unal, 2 331 5 FILL1 fixed bin (17)unal, 2 332 5 count_of_characters_transmitted fixed bin (17)unal, 2 333 5 FILL2 fixed bin (17)unal, 2 334 5 characters_transmitted (244) char (1) unal, 2 335 /* 277 */ 4 word_after_ust bit (36) aligned; 2 336 2 337 /* END INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 52 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 */ 53 54 end gtss_dump_program_stack_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1043.9 gtss_dump_program_stack_.pl1 >spec>on>7105>gtss_dump_program_stack_.pl1 51 1 09/09/83 1714.0 gtss_prgdes_.incl.pl1 >ldd>include>gtss_prgdes_.incl.pl1 52 2 09/09/83 1714.3 gtss_ust_ext_.incl.pl1 >ldd>include>gtss_ust_ext_.incl.pl1 53 3 09/09/83 1713.8 gtss_ext_.incl.pl1 >ldd>include>gtss_ext_.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. b0_17 171 000014 external static fixed bin(17,0) array level 4 in structure "gtss_ust_ext_$ust" packed unaligned dcl 2-16 in procedure "dps" set ref 35 b0_17 43 000014 external static fixed bin(17,0) level 4 in structure "gtss_ust_ext_$ust" packed unaligned dcl 2-16 in procedure "dps" set ref 40 b0_17 170 000014 external static fixed bin(17,0) level 4 in structure "gtss_ust_ext_$ust" packed unaligned dcl 2-16 in procedure "dps" set ref 30 b18_35 171(18) 000014 external static fixed bin(17,0) array level 4 packed unaligned dcl 2-16 set ref 36 gtss_ext_$stack_level_ 000016 external static fixed bin(17,0) dcl 3-31 set ref 49* gtss_prgdes_ext_$prgdes 000012 external static structure array level 1 dcl 1-77 gtss_ust 000014 external static structure level 2 dcl 2-16 set ref 30 40 44 gtss_ust_ext_$ust 000014 external static structure level 1 dcl 2-16 i 000100 automatic fixed bin(24,0) dcl 24 set ref 30* 33* 34 40* 42* 43 ioa_ 000010 constant entry external dcl 28 ref 32 33 37 39 42 44 49 j 000101 automatic fixed bin(24,0) dcl 25 set ref 34* 35 36* 43* 44 44 44* k 000102 automatic fixed bin(24,0) dcl 26 set ref 35* 37 l 000103 automatic fixed bin(24,0) dcl 27 set ref 36* 37* lcals 43 000014 external static structure level 3 dcl 2-16 set ref 40 lprgs 171 000014 external static structure array level 3 dcl 2-16 lxxx 170 000014 external static structure level 3 dcl 2-16 set ref 30 44 ss_flags 45(18) 000014 external static bit(18) array level 4 packed unaligned dcl 2-16 set ref 44 44 ss_name 000012 external static char(4) array level 2 dcl 1-77 set ref 37* subsystems 44 000014 external static structure array level 3 dcl 2-16 tally_address 45 000014 external static fixed bin(17,0) array level 4 packed unaligned dcl 2-16 set ref 44 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. 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_$ppt external static pointer dcl 3-94 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_$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 prgdes_ov based structure array level 1 dcl 1-100 NAMES DECLARED BY EXPLICIT CONTEXT. dps 000062 constant entry external dcl 14 gtss_dump_program_stack_ 000071 constant entry external dcl 14 NAMES DECLARED BY CONTEXT OR IMPLICATION. addr builtin function ref 30 30 40 40 44 44 divide builtin function ref 40 fixed builtin function ref 30 30 40 40 44 44 44 44 rel builtin function ref 30 30 40 40 44 44 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 516 536 421 526 Length 766 421 20 213 75 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME dps 136 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME dps 000100 i dps 000101 j dps 000102 k dps 000103 l dps THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc return ext_entry divide_fx3 THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. ioa_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. gtss_ext_$stack_level_ gtss_prgdes_ext_$prgdes gtss_ust_ext_$ust LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 14 000061 30 000076 32 000115 33 000133 34 000156 35 000165 36 000172 37 000177 38 000225 39 000227 40 000244 42 000267 43 000313 44 000323 48 000375 49 000377 54 000417 ----------------------------------------------------------- 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