ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.1-1054>hpriv_connection_list_.alm ASSEMBLED ON: 08/04/87 1615.2 mst Tue OPTIONS USED: -target l68 list symbols ASSEMBLED BY: ALM Version 7.3 November 1986 ASSEMBLER CREATED: 11/26/86 1244.2 mst Wed 1 " *********************************************************** 2 " * * 3 " * Copyright, (C) Honeywell Bull Inc., 1987 * 4 " * * 5 " * Copyright, (C) Honeywell Information Systems Inc., 1987 * 6 " * * 7 " *********************************************************** 8 9 " HISTORY COMMENTS: 10 " 1) change(85-04-01,Coren), approve(87-07-08,MCR7681), 11 " audit(87-03-26,GDixon), install(87-08-04,MR12.1-1055): 12 " Initial coding. 13 " END HISTORY COMMENTS 14 15 " highly privileged gate entries for managing the system-wide 16 " Active Connection List for network connections. 17 " These entries are called by the Initializer for connections for which 18 " no owner can be found. 19 000000 20 name hpriv_connection_list_ 21 22 include gate_macros 1-1 " BEGIN INCLUDE FILE ...... gate_macros.incl.alm 1-2 " Last modified 6/77 by N. Morris, B. Greenberg, & T. VanVleck 1-3 " Modified 741212 by PG to inhibit while computing virtual CPU time 1-4 " Modified 83-03-14 by E. N. Kittlitz to clear IR 1-5 " Modified 83-06-01 BIM for ring alarm polling 1-6 " Modified 85-04-03 by Keith Loepere to make polling a little smarter. 1-7 1-8 " This file contains several macros used when generating gate segments. 1-9 " The major macros that are defined are: 1-10 " 1-11 " gate_info general setup code for normal gates 1-12 " hardcore_gate_info general setup code for hardcore gates 1-13 " bad_dir_handler setup and handler for bad_dir_ condition (goes at bottom) 1-14 " bad_dir_handler_entry entrypoint for above (goes at top) 1-15 " gate to define a normal gate 1-16 " hgate to define a hardcore gate 1-17 " fgate to define a fast hardcore gate 1-18 " 1-19 1-20 000000 1-21 maclist off 1-22 1-23 1-24 " HGATE - define a hardcore gate entry 1-25 " 1-26 " hgate gatename,procedure,entry,args{,bad_dir_trap} 1-27 " 1-28 " The entrypoint gatename is defined in the gate segment. If args 1-29 " is nonzero, the number of arguments passed to gatename must be 1-30 " equal to args. When gatename is called, it will in turn call 1-31 " procedure$entry. 1-32 " 1-33 1-34 macro hgate 1 1-35 gentry &1,&4*2,&1.t 2 1-36 tsx2 .setup 3 1-37 &=&5,bad_dir_trap&[ tsx0 .set_dir_trap 4 1-38 &] ldi =0,dl 5 1-39 short_call &2$&3(ap|0) 6 1-40 eppbp lp|&1.t 7 1-41 tra .return_code 8 1-42 maclist restore 9 1-43 use linkage 10 1-44 even 11 1-45 maclist on,save 12 1-46 &1.t: 13 1-47 bss ,gate_entry_data_size 14 1-48 15 1-49 maclist restore 16 1-50 &end 1-51 1-52 1-53 " FGATE - define a fast hardcore gate 1-54 " 1-55 " fgate gatename,procedure,entry 1-56 " 1-57 1-58 macro fgate 1 1-59 gentry &1,0,0 2 1-60 ldi =0,dl 3 1-61 epplp .my_lp,* 4 1-62 tra &2$&3 5 1-63 6 1-64 maclist off 7 1-65 &end 1-66 1-67 1-68 " GATE - define a normal gate entry 1-69 " 1-70 " gate gatename,procedure,entry,args 1-71 " 1-72 1-73 macro gate 1 1-74 gentry &1,&4*2,0 2 1-75 tsx2 .setup 3 1-76 ldi =0,dl 4 1-77 short_call &2$&3(ap|0) 5 1-78 return 6 1-79 7 1-80 maclist restore 8 1-81 &end 1-82 1-83 1-84 1-85 macro gentry 1 1-86 maclist on,save 2 1-87 segdef &1 3 1-88 maclist restore 4 1-89 use transfer_vector 5 1-90 maclist on,save 6 1-91 &1: 7 1-92 tra &1.e 8 1-93 maclist restore 9 1-94 use main 10 1-95 maclist on,save 11 1-96 zero &2,&3 12 1-97 &1.e: 13 1-98 &end 1-99 1-100 1-101 " HARDCORE_GATE_INFO - general info for hardcore gates 1-102 1-103 macro hardcore_gate_info 1 1-104 maclist on,save 2 1-105 name &1 3 1-106 4 1-107 include stack_header 5 1-108 6 1-109 include stack_frame 7 1-110 include gate_data 8 1-111 9 1-112 maclist restore 10 1-113 eject 11 1-114 12 1-115 tempd .temp 13 1-116 tempd .label_variable(0) 14 1-117 tempd .time1,.time2 15 1-118 tempd .unwinder_arglist(0) 16 1-119 tempd .on_unit(5) 17 1-120 temp .pf,.entryp 18 1-121 tempd .vfl_arglist(2) 19 1-122 tempd .mcptr 20 1-123 21 1-124 use transfer_vector 22 1-125 equ .tv_begin,* 23 1-126 24 1-127 tra .actor 25 1-128 26 1-129 use tv_end 27 1-130 entrybound 28 1-131 29 1-132 segdef .tv_end 30 1-133 .tv_end: vfd 14/(*-.tv_begin) 31 1-134 32 1-135 use main 33 1-136 34 1-137 segdef .my_lp 35 1-138 even 36 1-139 .my_lp: bss ,2 37 1-140 38 1-141 join /text/transfer_vector,tv_end,main 39 1-142 40 1-143 use linkage 41 1-144 join /link/linkage 42 1-145 43 1-146 use main 44 1-147 45 1-148 maclist restore 46 1-149 eject 47 1-150 48 1-151 .actor: epplp .my_lp,* 49 1-152 maclist restore 50 1-153 gate_actor 51 1-154 52 1-155 53 1-156 54 1-157 .setup: push 55 1-158 epplp .my_lp,* 56 1-159 sprilp sp|stack_frame.lp_ptr 57 1-160 58 1-161 maclist restore 59 1-162 gcheck 60 1-163 61 1-164 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 62 1-165 rccl sys_info$clock_,* calculate times 63 1-166 sbaq pds$cpu_time 64 1-167 staq .time1 65 1-168 sbaq pds$virtual_delta 66 1-169 staq .time2 67 1-170 lda pds$page_waits 68 1-171 sta .pf 69 1-172 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> 70 1-173 tra 0,2 71 1-174 72 1-175 maclist restore 73 1-176 eject 74 1-177 75 1-178 .return_code: 76 1-179 77 1-180 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 78 1-181 rccl sys_info$clock_,* calculate times 79 1-182 sbaq pds$cpu_time 80 1-183 staq .temp 81 1-184 sbaq .time1 82 1-185 adaq bp|gate_entry_data.cpu_time 83 1-186 staq bp|gate_entry_data.cpu_time 84 1-187 ldaq .temp 85 1-188 sbaq pds$virtual_delta 86 1-189 sbaq .time2 87 1-190 adaq bp|gate_entry_data.vcpu_time 88 1-191 staq bp|gate_entry_data.vcpu_time 89 1-192 lda pds$page_waits 90 1-193 sbla .pf 91 1-194 asa bp|gate_entry_data.page_waits 92 1-195 aos bp|gate_entry_data.calls 93 1-196 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> 94 1-197 95 1-198 " Poll for ring alarms 96 1-199 sra .temp Borrow from time calc 97 1-200 szn .temp Zero? 98 1-201 tze .return_code_return 99 1-202 100 1-203 epp1 sp|stack_frame.prev_sp,* "possible ring alarm 101 1-204 epaq pr1|stack_frame.return_ptr,* 102 1-205 ana 7,dl " ring number to which we return 103 1-206 cmpa .temp 104 1-207 tpl .ring_alarm " ring alarm will occur 105 1-208 106 1-209 .return_code_return: 107 1-210 return 108 1-211 109 1-212 .ring_alarm: " perhaps we can handle without faults? 110 1-213 111 1-214 aos bp|gate_entry_data.ring_alarms 112 1-215 stz .temp " return argument for ring_alarm$poll 113 1-216 ldaq .one_arg_header 114 1-217 staq .ring_alarm_arg_list 115 1-218 epp1 .temp 116 1-219 spri1 .ring_alarm_arg_list+2 117 1-220 eppap .ring_alarm_arg_list 118 1-221 short_call ring_alarm$poll 119 1-222 szn .temp 120 1-223 tze .return_code_return 121 1-224 eppsp sp|stack_frame.prev_sp,* 122 1-225 sprisp pds$pre_empt_poll_return " short-return from here 123 1-226 epp1 sb|stack_header.stack_begin_ptr,* " abandoning this stack frame. 124 1-227 spri1 sb|stack_header.stack_end_ptr 125 1-228 " Leave SB as stack_0, so pxss can get to operators. 126 1-229 tra pxss$pre_empt_poll 127 1-230 128 1-231 tempd .ring_alarm_arg_list(2) 129 1-232 even 130 1-233 .one_arg_header: 131 1-234 vfd 17/2,1/0,18/4 132 1-235 vfd 18/0,18/0 133 1-236 134 1-237 135 1-238 maclist restore 136 1-239 eject 137 1-240 maclist restore 138 1-241 &end 1-242 1-243 1-244 " BAD_DIR_HANDLER - code to setup and handle bad_dir_ condition 1-245 " put this after the last hgate macro 1-246 1-247 macro bad_dir_handler 1 1-248 maclist on,save 2 1-249 3 1-250 include on_unit 4 1-251 5 1-252 use transfer_vector 6 1-253 .handler_entry: 7 1-254 tra .handler 8 1-255 .handler_restart_entry: 9 1-256 tra .handler_restart_point 10 1-257 11 1-258 use main 12 1-259 .set_dir_trap: 13 1-260 stx0 .entryp save for restart 14 1-261 15 1-262 mlr (),(pr),fill(000) 16 1-263 desc9a 0,0 17 1-264 desc9a .on_unit,10*4 18 1-265 eppbp .bad_dir_name 19 1-266 spribp .on_unit+on_unit.name 20 1-267 eppbp .handler_entry 21 1-268 spribp .on_unit+on_unit.body 22 1-269 lxl1 .bad_dir_desc 23 1-270 sxl1 .on_unit+on_unit.size 24 1-271 eaa .on_unit set up on-unit for bad_dir_ 25 1-272 sbla sp|0,du .. make rel to sp 26 1-273 sta sp|stack_frame.on_unit_rel_ptrs 27 1-274 lda stack_frame.condition_bit,dl 28 1-275 orsa sp|stack_frame.flag_word 29 1-276 tra 0,0 30 1-277 31 1-278 string bad_dir_ 32 1-279 33 1-280 34 1-281 35 1-282 .handler: epaq sp|0 verify that call came from ring 0 36 1-283 cana -1,dl check ring number in AL 37 1-284 tze *+2 38 1-285 zero 0 go way kid you bother me 39 1-286 40 1-287 push " ok, we like the call 41 1-288 epplp .my_lp,* 42 1-289 ldx0 ap|0 get display 43 1-290 eppbp ap|2,0* 44 1-291 lda bp|stack_frame.prev_sp 45 1-292 cana =o700000,dl from another ring? 46 1-293 tze .continue_signal if not, back to signal_ 47 1-294 eppap ap|2,* Get mcptr 48 1-295 eppap ap|0,* .. 49 1-296 spriap bp|.mcptr .. save in gate frame 50 1-297 spribp .label_variable+2 51 1-298 eppbp .handler_restart_entry 52 1-299 spribp .label_variable 53 1-300 eppbp .label_variable 54 1-301 spribp .unwinder_arglist+2 55 1-302 fld =1b24,dl 56 1-303 staq .unwinder_arglist 57 1-304 call unwinder_$unwinder_(.unwinder_arglist) 58 1-305 59 1-306 .continue_signal: 60 1-307 lda =o400000,du "1"b 61 1-308 sta ap|10,* set continue bit 62 1-309 return 63 1-310 64 1-311 .handler_restart_point: 65 1-312 epaq sp|0 check that call came from ring 0 66 1-313 cana -1,dl 67 1-314 tze *+2 68 1-315 zero 1 69 1-316 epplp .my_lp,* 70 1-317 lca stack_frame.condition_bit+1,dl Vanish on-unit 71 1-318 ansa sp|stack_frame.flag_word 72 1-319 eppbp .mcptr 73 1-320 spribp .vfl_arglist+2 74 1-321 fld =1b24,dl 75 1-322 staq .vfl_arglist 76 1-323 short_call verify_lock$verify_lock_bad_dir(.vfl_arglist) 77 1-324 ldx0 .entryp 78 1-325 eppap sp|stack_frame.arg_ptr,* 79 1-326 tra 0,0 retry the call 80 1-327 81 1-328 maclist restore 82 1-329 eject 83 1-330 maclist restore 84 1-331 &end 1-332 1-333 1-334 " GATE_INFO - general info for non-hardcore gates 1-335 1-336 macro gate_info 1 1-337 maclist on,save 2 1-338 use transfer_vector 3 1-339 tra .actor 4 1-340 5 1-341 use tv_end 6 1-342 entrybound 7 1-343 8 1-344 use main 9 1-345 join /text/transfer_vector,tv_end,main 10 1-346 11 1-347 maclist restore 12 1-348 eject 13 1-349 14 1-350 .actor: getlp 15 1-351 maclist restore 16 1-352 gate_actor 17 1-353 18 1-354 maclist restore 19 1-355 eject 20 1-356 21 1-357 .setup: push 22 1-358 getlp 23 1-359 maclist restore 24 1-360 gcheck 25 1-361 tra 0,2 26 1-362 27 1-363 maclist restore 28 1-364 eject 29 1-365 30 1-366 maclist restore 31 1-367 &end 1-368 1-369 1-370 " Macro to generate gate actor. 1-371 1-372 macro gate_actor 1 1-373 maclist on,save 2 1-374 eppbp ap|2,* 3 1-375 lda bp|-1 get length of string 4 1-376 tze .return_name zero length => get name 5 1-377 6 1-378 adla 1,dl include length of acc 7 1-379 stz ap|4,* 8 1-380 tsx0 .search_defs 9 1-381 10 1-382 cmpc (pr,rl),(pr,rl) compare name 11 1-383 desc9a bp|-1(3),al 12 1-384 desc9a bb|0,al 13 1-385 tnz .next_def 14 1-386 15 1-387 lda ab|1,2 return location 16 1-388 arl 18 17 1-389 sta ap|4,* 18 1-390 19 1-391 short_return 20 1-392 21 1-393 .return_name: 22 1-394 lxl3 ap|4,* get location 23 1-395 tsx0 .search_defs 24 1-396 25 1-397 cmpx3 ab|1,2 compare location 26 1-398 tnz .next_def 27 1-399 28 1-400 lda bb|0 get length of name 29 1-401 arl 27 30 1-402 sta bp|-1 set length of varying string 31 1-403 mlr (pr,rl),(pr,rl) return string 32 1-404 desc9a bb|0(1),al 33 1-405 desc9a bp|0,al 34 1-406 35 1-407 short_return 36 1-408 37 1-409 .search_defs: 38 1-410 eax2 0 39 1-411 eppab lp|0,* ab -> defs 40 1-412 .defs_loop: 41 1-413 lxl1 ab|1,2 get class and flags 42 1-414 cmpx1 =o400000,du must be class 0 43 1-415 tnz .next_def 44 1-416 45 1-417 ldx7 ab|2,2 46 1-418 eppbb ab|0,7 bb -> name 47 1-419 tra 0,0 test definition 48 1-420 .next_def: 49 1-421 ldx2 ab|0,2 chain to next def 50 1-422 tnz .defs_loop 51 1-423 52 1-424 short_return 53 1-425 54 1-426 &end 1-427 1-428 1-429 " Miscellaneous macros. 1-430 1-431 macro gcheck 1 1-432 maclist on,save 2 1-433 ldx1 -2,2 get number of args expected 3 1-434 tze .no_gate_error if zero, none or doesn't matter 4 1-435 cmpx1 ap|0 compare against number given 5 1-436 tze .no_gate_error args match, call procedure 6 1-437 7 1-438 call signal_$signal_(signal_arglist) 8 1-439 oct 0 9 1-440 10 1-441 even 11 1-442 signal_arglist: 12 1-443 zero 2,4 13 1-444 zero 2,0 14 1-445 arg .gate_errorname 15 1-446 arg 16 1-447 arg .gate_errordesc 17 1-448 arg 18 1-449 19 1-450 string gate_error 20 1-451 21 1-452 22 1-453 .no_gate_error: 23 1-454 &end 1-455 1-456 macro string 1 1-457 .&1name: 2 1-458 aci "&1" 3 1-459 .&1desc: 4 1-460 vfd o9/525,o27/&l1 5 1-461 6 1-462 &end 1-463 1-464 macro eject 1 1-465 maclist on,save 2 1-466 3 1-467 &end 1-468 1-469 " END INCLUDE FILE ...... gate_macros.incl.alm 1-470 1-471 " To arrange the return it wants to return, it will have to reach back 2 frames. 23 24 gate_info use transfer_vector 000000 0a 000012 7100 00 tra .actor use tv_end entrybound use main join /text/transfer_vector,tv_end,main 000012 aa 7 00046 2721 20 .actor: getlp 000013 aa 0 00002 3521 20 eppbp ap|2,* 000014 aa 2 77777 2351 00 lda bp|-1 get length of string 000015 0a 000031 6000 00 tze .return_name zero length => get name 000016 aa 000001 0350 07 adla 1,dl include length of acc 000017 aa 0 00004 4501 20 stz ap|4,* 000020 0a 000044 7000 00 tsx0 .search_defs 000021 aa 0 00140 1065 40 cmpc (pr,rl),(pr,rl) compare name 000022 aa 277777 600005 desc9a bp|-1(3),al 000023 aa 300000 000005 desc9a bb|0,al 000024 0a 000054 6010 00 tnz .next_def 000025 aa 1 00001 2351 12 lda ab|1,2 return location 000026 aa 000022 7710 00 arl 18 000027 aa 0 00004 7551 20 sta ap|4,* 000030 aa 7 00044 7101 20 short_return 000031 .return_name: 000031 aa 0 00004 7231 20 lxl3 ap|4,* get location 000032 0a 000044 7000 00 tsx0 .search_defs 000033 aa 1 00001 1031 12 cmpx3 ab|1,2 compare location 000034 0a 000054 6010 00 tnz .next_def 000035 aa 3 00000 2351 00 lda bb|0 get length of name 000036 aa 000033 7710 00 arl 27 000037 aa 2 77777 7551 00 sta bp|-1 set length of varying string 000040 aa 0 00140 1005 40 mlr (pr,rl),(pr,rl) return string 000041 aa 300000 200005 desc9a bb|0(1),al 000042 aa 200000 000005 desc9a bp|0,al 000043 aa 7 00044 7101 20 short_return 000044 .search_defs: 000044 aa 000000 6220 00 eax2 0 000045 aa 4 00000 3515 20 eppab lp|0,* ab -> defs 000046 .defs_loop: 000046 aa 1 00001 7211 12 lxl1 ab|1,2 get class and flags 000047 aa 400000 1010 03 cmpx1 =o400000,du must be class 0 000050 0a 000054 6010 00 tnz .next_def 000051 aa 1 00002 2271 12 ldx7 ab|2,2 000052 aa 1 00000 3535 17 eppbb ab|0,7 bb -> name 000053 aa 000000 7100 10 tra 0,0 test definition 000054 .next_def: 000054 aa 1 00000 2221 12 ldx2 ab|0,2 chain to next def 000055 0a 000046 6010 00 tnz .defs_loop 000056 aa 7 00044 7101 20 short_return 000057 aa 000060 6270 00 .setup: push 000060 aa 7 00040 2721 20 000061 aa 7 00046 2721 20 getlp 000062 aa 777776 2210 12 ldx1 -2,2 get number of args expected 000063 0a 000110 6000 00 tze .no_gate_error if zero, none or doesn't matter 000064 aa 0 00000 1011 00 cmpx1 ap|0 compare against number given 000065 0a 000110 6000 00 tze .no_gate_error args match, call procedure 000066 aa 6 00000 2541 00 call signal_$signal_(signal_arglist) 000067 0a 000076 3500 00 000070 4a 4 00010 3521 20 000071 aa 6 00040 7531 00 000072 aa 7 00036 6701 20 000073 aa 6 00000 1731 00 000074 aa 6 00040 0731 00 000075 aa 000000 000000 oct 0 even 000076 signal_arglist: 000076 aa 000002 000004 zero 2,4 000077 aa 000002 000000 zero 2,0 000100 0a 000104 0000 00 arg .gate_errorname 000101 aa 000000 0000 00 arg 000102 0a 000107 0000 00 arg .gate_errordesc 000103 aa 000000 0000 00 arg string gate_error 000104 .gate_errorname: 000104 aa 147 141 164 145 aci "gate_error" 000105 aa 137 145 162 162 000106 aa 157 162 000 000 000107 .gate_errordesc: 000107 aa 525000 000010 vfd o9/525,o27/10 000110 .no_gate_error: 000110 aa 000000 7100 12 tra 0,2 25 26 gate delete_name,connection_list_manager_,hpriv_delete_name,2 000001 segdef delete_name 000001 delete_name: 000001 0a 000112 7100 00 tra delete_name.e 000111 aa 000004 000000 zero 2*2,0 000112 delete_name.e: 000112 0a 000057 7020 00 tsx2 .setup 000113 aa 000000 6340 07 ldi =0,dl 000114 4a 4 00012 3521 20 short_call connection_list_manager_$hpriv_delete_name(ap|0) 000115 aa 7 00036 6701 20 000116 aa 6 00030 3701 20 000117 aa 7 00042 7101 20 return 27 gate delete_offset,connection_list_manager_,hpriv_delete_offset,2 000002 segdef delete_offset 000002 delete_offset: 000002 0a 000121 7100 00 tra delete_offset.e 000120 aa 000004 000000 zero 2*2,0 000121 delete_offset.e: 000121 0a 000057 7020 00 tsx2 .setup 000122 aa 000000 6340 07 ldi =0,dl 000123 4a 4 00014 3521 20 short_call connection_list_manager_$hpriv_delete_offset(ap|0) 000124 aa 7 00036 6701 20 000125 aa 6 00030 3701 20 000126 aa 7 00042 7101 20 return 28 gate delete_all_for_user,connection_list_manager_,hpriv_delete_all_for_user,2 000003 segdef delete_all_for_user 000003 delete_all_for_user: 000003 0a 000130 7100 00 tra delete_all_for_user.e 000127 aa 000004 000000 zero 2*2,0 000130 delete_all_for_user.e: 000130 0a 000057 7020 00 tsx2 .setup 000131 aa 000000 6340 07 ldi =0,dl 000132 4a 4 00016 3521 20 short_call connection_list_manager_$hpriv_delete_all_for_user(ap|0) 000133 aa 7 00036 6701 20 000134 aa 6 00030 3701 20 000135 aa 7 00042 7101 20 return 29 gate get_name,connection_list_manager_,hpriv_get_name,3 000004 segdef get_name 000004 get_name: 000004 0a 000137 7100 00 tra get_name.e 000136 aa 000006 000000 zero 3*2,0 000137 get_name.e: 000137 0a 000057 7020 00 tsx2 .setup 000140 aa 000000 6340 07 ldi =0,dl 000141 4a 4 00020 3521 20 short_call connection_list_manager_$hpriv_get_name(ap|0) 000142 aa 7 00036 6701 20 000143 aa 6 00030 3701 20 000144 aa 7 00042 7101 20 return 30 gate get_next,connection_list_manager_,hpriv_get_next,3 000005 segdef get_next 000005 get_next: 000005 0a 000146 7100 00 tra get_next.e 000145 aa 000006 000000 zero 3*2,0 000146 get_next.e: 000146 0a 000057 7020 00 tsx2 .setup 000147 aa 000000 6340 07 ldi =0,dl 000150 4a 4 00022 3521 20 short_call connection_list_manager_$hpriv_get_next(ap|0) 000151 aa 7 00036 6701 20 000152 aa 6 00030 3701 20 000153 aa 7 00042 7101 20 return 31 gate get_next_owner,connection_list_manager_,hpriv_get_next_owner,4 000006 segdef get_next_owner 000006 get_next_owner: 000006 0a 000155 7100 00 tra get_next_owner.e 000154 aa 000010 000000 zero 4*2,0 000155 get_next_owner.e: 000155 0a 000057 7020 00 tsx2 .setup 000156 aa 000000 6340 07 ldi =0,dl 000157 4a 4 00024 3521 20 short_call connection_list_manager_$hpriv_get_next_owner(ap|0) 000160 aa 7 00036 6701 20 000161 aa 6 00030 3701 20 000162 aa 7 00042 7101 20 return 32 gate get_next_user,connection_list_manager_,hpriv_get_next_user,4 000007 segdef get_next_user 000007 get_next_user: 000007 0a 000164 7100 00 tra get_next_user.e 000163 aa 000010 000000 zero 4*2,0 000164 get_next_user.e: 000164 0a 000057 7020 00 tsx2 .setup 000165 aa 000000 6340 07 ldi =0,dl 000166 4a 4 00026 3521 20 short_call connection_list_manager_$hpriv_get_next_user(ap|0) 000167 aa 7 00036 6701 20 000170 aa 6 00030 3701 20 000171 aa 7 00042 7101 20 return 33 gate init,connection_list_manager_,init,1 000010 segdef init 000010 init: 000010 0a 000173 7100 00 tra init.e 000172 aa 000002 000000 zero 1*2,0 000173 init.e: 000173 0a 000057 7020 00 tsx2 .setup 000174 aa 000000 6340 07 ldi =0,dl 000175 4a 4 00030 3521 20 short_call connection_list_manager_$init(ap|0) 000176 aa 7 00036 6701 20 000177 aa 6 00030 3701 20 000200 aa 7 00042 7101 20 return 34 35 end NO LITERALS NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 000202 5a 000003 000000 000203 5a 000107 600000 000204 aa 000000 000000 000205 55 000014 000002 000206 5a 000002 400003 000207 55 000006 000014 000210 aa 026 150 160 162 000211 aa 151 166 137 143 000212 aa 157 156 156 145 000213 aa 143 164 151 157 000214 aa 156 137 154 151 000215 aa 163 164 137 000 000216 55 000021 000003 000217 0a 000010 400000 000220 55 000017 000003 000221 aa 004 151 156 151 init 000222 aa 164 000 000 000 000223 55 000030 000014 000224 0a 000007 400000 000225 55 000024 000003 000226 aa 015 147 145 164 get_next_user 000227 aa 137 156 145 170 000230 aa 164 137 165 163 000231 aa 145 162 000 000 000232 55 000037 000021 000233 0a 000006 400000 000234 55 000033 000003 000235 aa 016 147 145 164 get_next_owner 000236 aa 137 156 145 170 000237 aa 164 137 157 167 000240 aa 156 145 162 000 000241 55 000045 000030 000242 0a 000005 400000 000243 55 000042 000003 000244 aa 010 147 145 164 get_next 000245 aa 137 156 145 170 000246 aa 164 000 000 000 000247 55 000053 000037 000250 0a 000004 400000 000251 55 000050 000003 000252 aa 010 147 145 164 get_name 000253 aa 137 156 141 155 000254 aa 145 000 000 000 000255 55 000063 000045 000256 0a 000003 400000 000257 55 000056 000003 000260 aa 023 144 145 154 delete_all_for_user 000261 aa 145 164 145 137 000262 aa 141 154 154 137 000263 aa 146 157 162 137 000264 aa 165 163 145 162 000265 55 000072 000053 000266 0a 000002 400000 000267 55 000066 000003 000270 aa 015 144 145 154 delete_offset 000271 aa 145 164 145 137 000272 aa 157 146 146 163 000273 aa 145 164 000 000 000274 55 000100 000063 000275 0a 000001 400000 000276 55 000075 000003 000277 aa 013 144 145 154 delete_name 000300 aa 145 164 145 137 000301 aa 156 141 155 145 000302 55 000002 000072 000303 6a 000000 400002 000304 55 000103 000003 000305 aa 014 163 171 155 symbol_table 000306 aa 142 157 154 137 000307 aa 164 141 142 154 000310 aa 145 000 000 000 DEFINITIONS HASH TABLE 000311 aa 000000 000015 000312 5a 000045 000000 000313 aa 000000 000000 000314 5a 000053 000000 000315 5a 000072 000000 000316 aa 000000 000000 000317 aa 000000 000000 000320 5a 000030 000000 000321 5a 000063 000000 000322 5a 000100 000000 000323 aa 000000 000000 000324 5a 000014 000000 000325 5a 000021 000000 000326 5a 000037 000000 EXTERNAL NAMES 000327 aa 023 150 160 162 hpriv_get_next_user 000330 aa 151 166 137 147 000331 aa 145 164 137 156 000332 aa 145 170 164 137 000333 aa 165 163 145 162 000334 aa 024 150 160 162 hpriv_get_next_owner 000335 aa 151 166 137 147 000336 aa 145 164 137 156 000337 aa 145 170 164 137 000340 aa 157 167 156 145 000341 aa 162 000 000 000 000342 aa 016 150 160 162 hpriv_get_next 000343 aa 151 166 137 147 000344 aa 145 164 137 156 000345 aa 145 170 164 000 000346 aa 016 150 160 162 hpriv_get_name 000347 aa 151 166 137 147 000350 aa 145 164 137 156 000351 aa 141 155 145 000 000352 aa 031 150 160 162 hpriv_delete_all_for_user 000353 aa 151 166 137 144 000354 aa 145 154 145 164 000355 aa 145 137 141 154 000356 aa 154 137 146 157 000357 aa 162 137 165 163 000360 aa 145 162 000 000 000361 aa 023 150 160 162 hpriv_delete_offset 000362 aa 151 166 137 144 000363 aa 145 154 145 164 000364 aa 145 137 157 146 000365 aa 146 163 145 164 000366 aa 021 150 160 162 hpriv_delete_name 000367 aa 151 166 137 144 000370 aa 145 154 145 164 000371 aa 145 137 156 141 000372 aa 155 145 000 000 000373 aa 030 143 157 156 connection_list_manager_ 000374 aa 156 145 143 164 000375 aa 151 157 156 137 000376 aa 154 151 163 164 000377 aa 137 155 141 156 000400 aa 141 147 145 162 000401 aa 137 000 000 000 000402 aa 007 163 151 147 signal_ 000403 aa 156 141 154 137 NO TRAP POINTER WORDS TYPE PAIR BLOCKS 000404 aa 000004 000000 000405 55 000171 000017 000406 aa 000004 000000 000407 55 000171 000125 000410 aa 000004 000000 000411 55 000171 000132 000412 aa 000004 000000 000413 55 000171 000140 000414 aa 000004 000000 000415 55 000171 000144 000416 aa 000004 000000 000417 55 000171 000150 000420 aa 000004 000000 000421 55 000171 000157 000422 aa 000004 000000 000423 55 000171 000164 000424 aa 000004 000000 000425 55 000200 000200 000426 aa 000001 000000 000427 aa 000000 000000 INTERNAL EXPRESSION WORDS 000430 5a 000202 000000 000431 5a 000204 000000 000432 5a 000206 000000 000433 5a 000210 000000 000434 5a 000212 000000 000435 5a 000214 000000 000436 5a 000216 000000 000437 5a 000220 000000 000440 5a 000222 000000 000441 aa 000000 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 0a 000202 000000 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000010 000032 000007 a2 000000 000000 000010 9a 777770 0000 46 signal_|signal_ 000011 5a 000236 0000 00 000012 9a 777766 0000 46 connection_list_manager_|hpriv_delete_name 000013 5a 000235 0000 00 000014 9a 777764 0000 46 connection_list_manager_|hpriv_delete_offset 000015 5a 000234 0000 00 000016 9a 777762 0000 46 connection_list_manager_|hpriv_delete_all_for_user 000017 5a 000233 0000 00 000020 9a 777760 0000 46 connection_list_manager_|hpriv_get_name 000021 5a 000232 0000 00 000022 9a 777756 0000 46 connection_list_manager_|hpriv_get_next 000023 5a 000231 0000 00 000024 9a 777754 0000 46 connection_list_manager_|hpriv_get_next_owner 000025 5a 000230 0000 00 000026 9a 777752 0000 46 connection_list_manager_|hpriv_get_next_user 000027 5a 000227 0000 00 000030 9a 777750 0000 46 connection_list_manager_|init 000031 5a 000226 0000 00 SYMBOL INFORMATION SYMBOL TABLE HEADER 000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000007 000004 aa 000000 115030 000005 aa 273207 326355 000006 aa 000000 115524 000007 aa 101667 076422 000010 aa 141154 155040 000011 aa 040040 040040 000012 aa 000024 000040 000013 aa 000034 000040 000014 aa 000044 000100 000015 aa 000002 000002 000016 aa 000064 000000 000017 aa 000000 000206 000020 aa 000000 000126 000021 aa 000152 000144 000022 aa 000177 000126 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 067056 063040 000030 aa 116157 166145 000031 aa 155142 145162 000032 aa 040061 071070 000033 aa 066040 040040 000034 aa 107112 157150 000035 aa 156163 157156 000036 aa 056123 171163 000037 aa 115141 151156 000040 aa 164056 141040 000041 aa 040040 040040 000042 aa 040040 040040 000043 aa 040040 040040 000044 aa 055164 141162 000045 aa 147145 164040 000046 aa 154066 070040 000047 aa 040040 040040 000050 aa 040040 040040 000051 aa 040040 040040 000052 aa 040040 040040 000053 aa 040040 040040 000054 aa 040040 040040 000055 aa 040040 040040 000056 aa 040154 151163 000057 aa 164040 163171 000060 aa 155142 157154 000061 aa 163040 040040 000062 aa 040040 040040 000063 aa 040040 040040 000064 aa 000000 000001 000065 aa 000000 000002 000066 aa 000076 000073 000067 aa 155200 221352 000070 aa 000000 115523 000071 aa 731530 400000 000072 aa 000115 000041 000073 aa 134571 651553 000074 aa 000000 113462 000075 aa 317506 600000 000076 aa 076163 160145 >special_ldd>install>MR12.1-1054>hpriv_connection_list_.alm 000077 aa 143151 141154 000100 aa 137154 144144 000101 aa 076151 156163 000102 aa 164141 154154 000103 aa 076115 122061 000104 aa 062056 061055 000105 aa 061060 065064 000106 aa 076150 160162 000107 aa 151166 137143 000110 aa 157156 156145 000111 aa 143164 151157 000112 aa 156137 154151 000113 aa 163164 137056 000114 aa 141154 155040 000115 aa 076154 144144 >ldd>include>gate_macros.incl.alm 000116 aa 076151 156143 000117 aa 154165 144145 000120 aa 076147 141164 000121 aa 145137 155141 000122 aa 143162 157163 000123 aa 056151 156143 000124 aa 154056 141154 000125 aa 155040 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number 12 .actor hpriv_connection_list_: 24. 46 .defs_loop hpriv_connection_list_: 24. 107 .gate_errordesc hpriv_connection_list_: 24. 104 .gate_errorname hpriv_connection_list_: 24. 54 .next_def hpriv_connection_list_: 24. 110 .no_gate_error hpriv_connection_list_: 24. 31 .return_name hpriv_connection_list_: 24. 44 .search_defs hpriv_connection_list_: 24. 57 .setup hpriv_connection_list_: 24, 26, 27, 28, 29, 30, 31, 32, 33. connection_list_manager_ hpriv_connection_list_: 26, 27, 28, 29, 30, 31, 32, 33. 3 delete_all_for_user hpriv_connection_list_: 28. 130 delete_all_for_user.e hpriv_connection_list_: 28. 1 delete_name hpriv_connection_list_: 26. 112 delete_name.e hpriv_connection_list_: 26. 2 delete_offset hpriv_connection_list_: 27. 121 delete_offset.e hpriv_connection_list_: 27. 4 get_name hpriv_connection_list_: 29. 137 get_name.e hpriv_connection_list_: 29. 5 get_next hpriv_connection_list_: 30. 146 get_next.e hpriv_connection_list_: 30. 6 get_next_owner hpriv_connection_list_: 31. 155 get_next_owner.e hpriv_connection_list_: 31. 7 get_next_user hpriv_connection_list_: 32. 164 get_next_user.e hpriv_connection_list_: 32. hpriv_delete_all_for_user hpriv_connection_list_: 28. hpriv_delete_name hpriv_connection_list_: 26. hpriv_delete_offset hpriv_connection_list_: 27. hpriv_get_name hpriv_connection_list_: 29. hpriv_get_next hpriv_connection_list_: 30. hpriv_get_next_owner hpriv_connection_list_: 31. hpriv_get_next_user hpriv_connection_list_: 32. 10 init hpriv_connection_list_: 33. 173 init.e hpriv_connection_list_: 33. 12 main hpriv_connection_list_: 24, 26, 27, 28, 29, 30, 31, 32, 33. signal_ hpriv_connection_list_: 24. 76 signal_arglist hpriv_connection_list_: 24. 0 transfer_vector hpriv_connection_list_: 24, 26, 27, 28, 29, 30, 31, 32, 33. 11 tv_end hpriv_connection_list_: 24. NO FATAL ERRORS ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group BULL including BULL HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, BULL or BULL HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by BULL HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved