ASSEMBLY LISTING OF SEGMENT >spec>install>1115>hphcs_.alm ASSEMBLED ON: 11/11/89 0934.8 mst Sat OPTIONS USED: -target l68 list symbols ASSEMBLED BY: ALM Version 8.14 March 1989 ASSEMBLER CREATED: 06/09/89 1002.3 mst Fri 1 " *********************************************************** 2 " * * 3 " * Copyright, (C) Honeywell Bull Inc., 1987 * 4 " * * 5 " * Copyright, (C) Honeywell Information Systems Inc., 1984 * 6 " * * 7 " * Copyright (c) 1972 by Massachusetts Institute of * 8 " * Technology and Honeywell Information Systems, Inc. * 9 " * * 10 " *********************************************************** 11 12 13 " HISTORY COMMENTS: 14 " 1) change(80-09-16,Bush), approve(), audit(), install(): 15 " Pre-hcom comments. 16 " 80-09-16, J. A. Bush: Modified for the DPS8/70M CPU 17 " 81-03-21, J. Bongiovanni: Modified for copy_stack_0 18 " 83-03-24, E. N. Kittlitz: Modified to delete set_tpd 19 " 83-05-09, E. N. Kittlitz: Modified to add other_process_privileges. 20 " 83-06-14, S. Krupp: Modified to add add_channel and 21 " delete_channel entries. 22 " 83-06-28, E. A. Ranzenbach: Modified for new ocdcm_ entries. 23 " 83-08-01, Keith Loepere: Modified for call_bce and set_bce_command. 24 " 84-03-24, Chris Jones: Modified to add add_iom and delete_iom entries 25 " 84-07-16, R. Michael Tague: Modified: changed $ips_wakeup to call 26 " tc_util$ips_wakeup instead of pxss$ips_wakeup. 27 " 84-10-17, W. Olin Sibert: Removed old syserr entries, added new ones 28 " 84-11-05, E. A. Ranzenbach: printer_(on off) entries for ocdcm_. 29 " 84-11-11, E. Swenson for hphcs_$get_ipc_operands. 30 " 84-11-28, EJ Sharpe: added set_sys_audit_thresholds 31 " 84-12-13, Keith Loepere: added correct_(seg dir)_qused 32 " 85-03-03, EJ Sharpe: added new_syserr_verify_sequence 33 " 2) change(87-03-30,Lippard), approve(87-04-27,MCR7673), 34 " audit(87-05-15,Fawcett), install(87-05-26,MR12.1-1036): 35 " Added set_system_time_zone. 36 " END HISTORY COMMENTS 37 38 39 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. 40 41 hardcore_gate_info hphcs_ 000000 name hphcs_ include stack_header 2-1 " BEGIN INCLUDE FILE ... stack_header.incl.alm 3/72 Bill Silver 2-2 " 2-3 " modified 7/76 by M. Weaver for *system links and more system use of areas 2-4 " modified 3/77 by M. Weaver to add rnt_ptr 2-5 " modified 7/77 by S. Webber to add run_unit_depth and assign_linkage_ptr 2-6 " modified 6/83 by J. Ives to add trace_frames and in_trace. 2-7 2-8 " HISTORY COMMENTS: 2-9 " 1) change(86-06-24,DGHowe), approve(86-06-24,MCR7396), 2-10 " audit(86-08-05,Schroth), install(86-11-03,MR12.0-1206): 2-11 " added the heap_header_ptr definition 2-12 " 2) change(86-08-12,Kissel), approve(86-08-12,MCR7473), 2-13 " audit(86-10-10,Fawcett), install(86-11-03,MR12.0-1206): 2-14 " Modified to support control point management. These changes were 2-15 " actually made in February 1985 by G. Palter. 2-16 " 3) change(86-10-22,Fawcett), approve(86-10-22,MCR7473), 2-17 " audit(86-10-22,Farley), install(86-11-03,MR12.0-1206): 2-18 " Remove the old_lot pointer and replace it with cpm_data_ptr. Use the 18 2-19 " bit pad after cur_lot_size for the cpm_enabled. This was done to save 2-20 " some space int the stack header and change the cpd_ptr unal to 2-21 " cpm_data_ptr (ITS pair). 2-22 " END HISTORY COMMENTS 2-23 000004 2-24 equ stack_header.cpm_data_ptr,4 ptr to control point for this stack 000006 2-25 equ stack_header.combined_stat_ptr,6 ptr to separate static area 2-26 000010 2-27 equ stack_header.clr_ptr,8 ptr to area containing linkage sections 000012 2-28 equ stack_header.max_lot_size,10 number of words allowed in lot (DU) 000012 2-29 equ stack_header.main_proc_invoked,10 nonzero if main proc was invoked in run unit (DL) 000012 2-30 equ stack_header.run_unit_depth,10 number of active run units stacked (DL) 000013 2-31 equ stack_header.cur_lot_size,11 DU number of words (entries) in lot 000013 2-32 equ stack_header.cpm_enabled,11 DL non-zero if control point management is enabled 000014 2-33 equ stack_header.system_free_ptr,12 ptr to system storage area 000016 2-34 equ stack_header.user_free_ptr,14 ptr to user storage area 2-35 000020 2-36 equ stack_header.parent_ptr,16 ptr to parent stack or null 000022 2-37 equ stack_header.stack_begin_ptr,18 ptr to first stack frame 000024 2-38 equ stack_header.stack_end_ptr,20 ptr to next useable stack frame 000026 2-39 equ stack_header.lot_ptr,22 ptr to the lot for the current ring 2-40 000030 2-41 equ stack_header.signal_ptr,24 ptr to signal proc for current ring 000032 2-42 equ stack_header.bar_mode_sp,26 value of sp before entering bar mode 000034 2-43 equ stack_header.pl1_operators_ptr,28 ptr: pl1_operators_$operator_table 000036 2-44 equ stack_header.call_op_ptr,30 ptr to standard call operator 2-45 000040 2-46 equ stack_header.push_op_ptr,32 ptr to standard push operator 000042 2-47 equ stack_header.return_op_ptr,34 ptr to standard return operator 000044 2-48 equ stack_header.ret_no_pop_op_ptr,36 ptr: stand. return/ no pop operator 000046 2-49 equ stack_header.entry_op_ptr,38 ptr to standard entry operator 2-50 000050 2-51 equ stack_header.trans_op_tv_ptr,40 ptr to table of translator operator ptrs 000052 2-52 equ stack_header.isot_ptr,42 pointer to ISOT 000054 2-53 equ stack_header.sct_ptr,44 pointer to System Condition Table 000056 2-54 equ stack_header.unwinder_ptr,46 pointer to unwinder for current ring 2-55 000060 2-56 equ stack_header.sys_link_info_ptr,48 ptr to *system link name table 000062 2-57 equ stack_header.rnt_ptr,50 ptr to reference name table 000064 2-58 equ stack_header.ect_ptr,52 ptr to event channel table 000066 2-59 equ stack_header.assign_linkage_ptr,54 ptr to area for hcs_$assign_linkage calls 000070 2-60 equ stack_header.heap_header_ptr,56 ptr to heap header. 000072 2-61 equ stack_header.trace_frames,58 stack of trace_catch_ frames 000073 2-62 equ stach_header.trace_top_ptr,59 trace pointer 000074 2-63 equ stack_header.in_trace,60 trace antirecurse bit 000100 2-64 equ stack_header_end,64 length of stack header 2-65 2-66 2-67 2-68 000000 2-69 equ trace_frames.count,0 number of trace frames on stack 000001 2-70 equ trace_frames.top_ptr,1 packed pointer to top one 2-71 2-72 " The following constant is an offset within the pl1 operators table. 2-73 " It references a transfer vector table. 2-74 000551 2-75 bool tv_offset,551 2-76 2-77 2-78 " The following constants are offsets within this transfer vector table. 2-79 001170 2-80 equ call_offset,tv_offset+271 001171 2-81 equ push_offset,tv_offset+272 001172 2-82 equ return_offset,tv_offset+273 001173 2-83 equ return_no_pop_offset,tv_offset+274 001174 2-84 equ entry_offset,tv_offset+275 2-85 2-86 2-87 " END INCLUDE FILE stack_header.incl.alm include stack_frame 3-1 " 3-2 " BEGIN INCLUDE FILE ... stack_frame.incl.alm 6/72 RBS 3-3 " 3-4 " Modified: 16 Dec 1977, D. Levin - to add fio_ps_ptr 3-5 " Modified: 3 Feb 1978, P. Krupp - to add run_unit_manager_bit & main_proc_bit 3-6 " Modified: 21 March 1978, D. Levin - change fio_ps_ptr to support_ptr 3-7 " 000020 3-8 equ stack_frame.prev_sp,16 000020 3-9 equ stack_frame.condition_word,16 000022 3-10 equ stack_frame.next_sp,18 000022 3-11 equ stack_frame.signaller_word,18 000024 3-12 equ stack_frame.return_ptr,20 000026 3-13 equ stack_frame.entry_ptr,22 000030 3-14 equ stack_frame.operator_ptr,24 000030 3-15 equ stack_frame.lp_ptr,24 000032 3-16 equ stack_frame.arg_ptr,26 000034 3-17 equ stack_frame.static_ptr,28 000035 3-18 equ stack_frame.support_ptr,29 " only used by fortran I/O 000036 3-19 equ stack_frame.on_unit_rel_ptrs,30 000037 3-20 equ stack_frame.operator_ret_ptr,31 000037 3-21 equ stack_frame.translator_id,31 000040 3-22 equ stack_frame.regs,32 000060 3-23 equ stack_frame.min_length,48 000020 3-24 equ stack_frame.flag_word,16 020000 3-25 bool stack_frame.main_proc_bit,020000 (DL) 010000 3-26 bool stack_frame.run_unit_manager,010000 (DL) 004000 3-27 bool stack_frame.signal_bit,004000 (DL) 002000 3-28 bool stack_frame.crawl_out_bit,002000 (DL) 001000 3-29 bool stack_frame.signaller_bit,001000 (DL) 000400 3-30 bool stack_frame.link_trap_bit,000400 (DL) 000200 3-31 bool stack_frame.support_bit,000200 (DL) 000100 3-32 bool stack_frame.condition_bit,000100 (DL) 3-33 3-34 " 3-35 " END INCLUDE FILE ... stack_frame.incl.alm 3-36 " include gate_data 4-1 4-2 4-3 "BEGIN INCLUDE FILE gate_data.incl.alm 4-4 4-5 4-6 "Created 11/07/83 0737.6 est Mon by convert_include_file, 4-7 " Version of 11/07/82 1445.1 est Sun. 4-8 4-9 "Made from >user_dir_dir>Multics>Margulies>h>gate_data.incl.pl1, 4-10 " modified 11/07/83 0737.5 est Mon 4-11 4-12 " 4-13 " Structure gate_table 4-14 " 000003 4-15 equ gate_table_size,3 4-16 4-17 000000 4-18 equ gate_table.entryp,0 000001 4-19 equ gate_table.entryl,1 000002 4-20 equ gate_table.datap,2 4-21 4-22 " 4-23 " Structure gate_entry_data 4-24 " 000010 4-25 equ gate_entry_data_size,8 4-26 000000 4-27 equ gate_entry_data.cpu_time,0 " DOUBLE 000002 4-28 equ gate_entry_data.vcpu_time,2 " DOUBLE 000004 4-29 equ gate_entry_data.page_waits,4 000005 4-30 equ gate_entry_data.calls,5 000006 4-31 equ gate_entry_data.ring_alarms,6 4-32 4-33 "END INCLUDE FILE gate_data.incl.alm tempd .temp tempd .label_variable(0) tempd .time1,.time2 tempd .unwinder_arglist(0) tempd .on_unit(5) temp .pf,.entryp tempd .vfl_arglist(2) tempd .mcptr use transfer_vector 000000 equ .tv_begin,* 000000 0a 000220 7100 00 tra .actor use tv_end entrybound 000214 segdef .tv_end 000214 aa 004300 000000 .tv_end: vfd 14/(*-.tv_begin) use main 000216 segdef .my_lp even 000216 .my_lp: bss ,2 join /text/transfer_vector,tv_end,main use linkage join /link/linkage use main 000220 0a 000216 3700 20 .actor: epplp .my_lp,* 000221 aa 0 00002 3521 20 eppbp ap|2,* 000222 aa 2 77777 2351 00 lda bp|-1 get length of string 000223 0a 000237 6000 00 tze .return_name zero length => get name 000224 aa 000001 0350 07 adla 1,dl include length of acc 000225 aa 0 00004 4501 20 stz ap|4,* 000226 0a 000252 7000 00 tsx0 .search_defs 000227 aa 0 00140 1065 40 cmpc (pr,rl),(pr,rl) compare name 000230 aa 277777 600005 desc9a bp|-1(3),al 000231 aa 300000 000005 desc9a bb|0,al 000232 0a 000262 6010 00 tnz .next_def 000233 aa 1 00001 2351 12 lda ab|1,2 return location 000234 aa 000022 7710 00 arl 18 000235 aa 0 00004 7551 20 sta ap|4,* 000236 aa 7 00044 7101 20 short_return 000237 .return_name: 000237 aa 0 00004 7231 20 lxl3 ap|4,* get location 000240 0a 000252 7000 00 tsx0 .search_defs 000241 aa 1 00001 1031 12 cmpx3 ab|1,2 compare location 000242 0a 000262 6010 00 tnz .next_def 000243 aa 3 00000 2351 00 lda bb|0 get length of name 000244 aa 000033 7710 00 arl 27 000245 aa 2 77777 7551 00 sta bp|-1 set length of varying string 000246 aa 0 00140 1005 40 mlr (pr,rl),(pr,rl) return string 000247 aa 300000 200005 desc9a bb|0(1),al 000250 aa 200000 000005 desc9a bp|0,al 000251 aa 7 00044 7101 20 short_return 000252 .search_defs: 000252 aa 000000 6220 00 eax2 0 000253 aa 4 00000 3515 20 eppab lp|0,* ab -> defs 000254 .defs_loop: 000254 aa 1 00001 7211 12 lxl1 ab|1,2 get class and flags 000255 aa 400000 1010 03 cmpx1 =o400000,du must be class 0 000256 0a 000262 6010 00 tnz .next_def 000257 aa 1 00002 2271 12 ldx7 ab|2,2 000260 aa 1 00000 3535 17 eppbb ab|0,7 bb -> name 000261 aa 000000 7100 10 tra 0,0 test definition 000262 .next_def: 000262 aa 1 00000 2221 12 ldx2 ab|0,2 chain to next def 000263 0a 000254 6010 00 tnz .defs_loop 000264 aa 7 00044 7101 20 short_return 000265 aa 000120 6270 00 .setup: push 000266 aa 7 00040 2721 20 000267 0a 000216 3700 20 epplp .my_lp,* 000270 aa 6 00030 6501 00 sprilp sp|stack_frame.lp_ptr 000271 aa 777776 2210 12 ldx1 -2,2 get number of args expected 000272 0a 000320 6000 00 tze .no_gate_error if zero, none or doesn't matter 000273 aa 0 00000 1011 00 cmpx1 ap|0 compare against number given 000274 0a 000320 6000 00 tze .no_gate_error args match, call procedure 000275 aa 6 00000 2541 00 call signal_$signal_(signal_arglist) 000276 0a 000306 3500 00 000277 4a 4 02120 3521 20 000300 aa 6 00040 7531 00 000301 aa 7 00036 6701 20 000302 aa 6 00000 1731 00 000303 aa 6 00040 0731 00 000304 aa 000000 000000 oct 0 000305 aa 000000 0110 03 even 000306 signal_arglist: 000306 aa 000002 000004 zero 2,4 000307 aa 000002 000000 zero 2,0 000310 0a 000314 0000 00 arg .gate_errorname 000311 aa 000000 0000 00 arg 000312 0a 000317 0000 00 arg .gate_errordesc 000313 aa 000000 0000 00 arg string gate_error 000314 .gate_errorname: 000314 aa 147 141 164 145 aci "gate_error" 000315 aa 137 145 162 162 000316 aa 157 162 000 000 000317 .gate_errordesc: 000317 aa 525000 000010 vfd o9/525,o27/10 000320 .no_gate_error: 000320 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 000320 4a 4 02124 6333 20 rccl sys_info$clock_,* calculate times 000321 4a 4 02126 1773 20 sbaq pds$cpu_time 000322 aa 6 00052 7573 00 staq .time1 000323 4a 4 02130 1773 20 sbaq pds$virtual_delta 000324 aa 6 00054 7573 00 staq .time2 000325 4a 4 02132 2353 20 lda pds$page_waits 000326 aa 6 00070 7553 00 sta .pf 000327 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> 000327 aa 000000 7100 12 tra 0,2 000330 .return_code: 000330 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 000330 4a 4 02124 6333 20 rccl sys_info$clock_,* calculate times 000331 4a 4 02126 1773 20 sbaq pds$cpu_time 000332 aa 6 00050 7573 00 staq .temp 000333 aa 6 00052 1773 00 sbaq .time1 000334 aa 2 00000 0773 00 adaq bp|gate_entry_data.cpu_time 000335 aa 2 00000 7573 00 staq bp|gate_entry_data.cpu_time 000336 aa 6 00050 2373 00 ldaq .temp 000337 4a 4 02130 1773 20 sbaq pds$virtual_delta 000340 aa 6 00054 1773 00 sbaq .time2 000341 aa 2 00002 0773 00 adaq bp|gate_entry_data.vcpu_time 000342 aa 2 00002 7573 00 staq bp|gate_entry_data.vcpu_time 000343 4a 4 02132 2353 20 lda pds$page_waits 000344 aa 6 00070 1353 00 sbla .pf 000345 aa 2 00004 0553 00 asa bp|gate_entry_data.page_waits 000346 aa 2 00005 0543 00 aos bp|gate_entry_data.calls 000347 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> " Poll for ring alarms 000347 aa 6 00050 7545 00 sra .temp Borrow from time calc 000350 aa 6 00050 2341 00 szn .temp Zero? 000351 0a 000357 6000 00 tze .return_code_return 000352 aa 6 00020 3515 20 epp1 sp|stack_frame.prev_sp,* "possible ring alarm 000353 aa 1 00024 2131 20 epaq pr1|stack_frame.return_ptr,* 000354 aa 000007 3750 07 ana 7,dl " ring number to which we return 000355 aa 6 00050 1151 00 cmpa .temp 000356 0a 000360 6050 00 tpl .ring_alarm " ring alarm will occur 000357 .return_code_return: 000357 aa 7 00042 7101 20 return 000360 .ring_alarm: " perhaps we can handle without faults? 000360 aa 2 00006 0541 00 aos bp|gate_entry_data.ring_alarms 000361 aa 6 00050 4501 00 stz .temp " return argument for ring_alarm$poll 000362 0a 000402 2370 00 ldaq .one_arg_header 000363 aa 6 00100 7571 00 staq .ring_alarm_arg_list 000364 aa 6 00050 3515 00 epp1 .temp 000365 aa 6 00102 2515 00 spri1 .ring_alarm_arg_list+2 000366 aa 6 00100 3501 00 eppap .ring_alarm_arg_list 000367 4a 4 02134 3521 20 short_call ring_alarm$poll 000370 aa 7 00036 6701 20 000371 aa 6 00030 3701 20 000372 aa 6 00050 2341 00 szn .temp 000373 0a 000357 6000 00 tze .return_code_return 000374 aa 6 00020 3721 20 eppsp sp|stack_frame.prev_sp,* 000375 4a 4 02136 6521 20 sprisp pds$pre_empt_poll_return " short-return from here 000376 aa 7 00022 3515 20 epp1 sb|stack_header.stack_begin_ptr,* " abandoning this stack frame. 000377 aa 7 00024 2515 00 spri1 sb|stack_header.stack_end_ptr " Leave SB as stack_0, so pxss can get to operators. 000400 4a 4 02140 7101 20 tra pxss$pre_empt_poll tempd .ring_alarm_arg_list(2) 000401 aa 000000 0110 03 even 000402 .one_arg_header: 000402 aa 000004 000004 vfd 17/2,1/0,18/4 000403 aa 000000 000000 vfd 18/0,18/0 42 43 hgate add_acl_entries,level_0_,add_acl_entries,5,bad_dir_trap 000001 segdef add_acl_entries 000001 add_acl_entries: 000001 0a 000405 7100 00 tra add_acl_entries.e 000404 a8 000012 000010 zero 5*2,add_acl_entries.t 000405 add_acl_entries.e: 000405 0a 000265 7020 00 tsx2 .setup 000406 0a 002556 7000 00 tsx0 .set_dir_trap 000407 aa 000000 6340 07 ldi =0,dl 000410 4a 4 02142 3521 20 short_call level_0_$add_acl_entries(ap|0) 000411 aa 7 00036 6701 20 000412 aa 6 00030 3701 20 000413 9a 4 00010 3521 00 eppbp lp|add_acl_entries.t 000414 0a 000330 7100 00 tra .return_code 000010 add_acl_entries.t: 000010 bss ,gate_entry_data_size 44 hgate add_channel,io_reconfig,add_channel,2 000002 segdef add_channel 000002 add_channel: 000002 0a 000416 7100 00 tra add_channel.e 000415 a8 000004 000020 zero 2*2,add_channel.t 000416 add_channel.e: 000416 0a 000265 7020 00 tsx2 .setup 000417 aa 000000 6340 07 ldi =0,dl 000420 4a 4 02144 3521 20 short_call io_reconfig$add_channel(ap|0) 000421 aa 7 00036 6701 20 000422 aa 6 00030 3701 20 000423 9a 4 00020 3521 00 eppbp lp|add_channel.t 000424 0a 000330 7100 00 tra .return_code 000020 add_channel.t: 000020 bss ,gate_entry_data_size 45 hgate add_cpu,reconfig,add_cpu,3 000003 segdef add_cpu 000003 add_cpu: 000003 0a 000426 7100 00 tra add_cpu.e 000425 a8 000006 000030 zero 3*2,add_cpu.t 000426 add_cpu.e: 000426 0a 000265 7020 00 tsx2 .setup 000427 aa 000000 6340 07 ldi =0,dl 000430 4a 4 02146 3521 20 short_call reconfig$add_cpu(ap|0) 000431 aa 7 00036 6701 20 000432 aa 6 00030 3701 20 000433 9a 4 00030 3521 00 eppbp lp|add_cpu.t 000434 0a 000330 7100 00 tra .return_code 000030 add_cpu.t: 000030 bss ,gate_entry_data_size 46 hgate add_dir_acl_entries,level_0_,add_dir_acl_entries,5,bad_dir_trap 000004 segdef add_dir_acl_entries 000004 add_dir_acl_entries: 000004 0a 000436 7100 00 tra add_dir_acl_entries.e 000435 a8 000012 000040 zero 5*2,add_dir_acl_entries.t 000436 add_dir_acl_entries.e: 000436 0a 000265 7020 00 tsx2 .setup 000437 0a 002556 7000 00 tsx0 .set_dir_trap 000440 aa 000000 6340 07 ldi =0,dl 000441 4a 4 02150 3521 20 short_call level_0_$add_dir_acl_entries(ap|0) 000442 aa 7 00036 6701 20 000443 aa 6 00030 3701 20 000444 9a 4 00040 3521 00 eppbp lp|add_dir_acl_entries.t 000445 0a 000330 7100 00 tra .return_code 000040 add_dir_acl_entries.t: 000040 bss ,gate_entry_data_size 47 hgate add_iom,io_reconfig,add_iom,2 000005 segdef add_iom 000005 add_iom: 000005 0a 000447 7100 00 tra add_iom.e 000446 a8 000004 000050 zero 2*2,add_iom.t 000447 add_iom.e: 000447 0a 000265 7020 00 tsx2 .setup 000450 aa 000000 6340 07 ldi =0,dl 000451 4a 4 02152 3521 20 short_call io_reconfig$add_iom(ap|0) 000452 aa 7 00036 6701 20 000453 aa 6 00030 3701 20 000454 9a 4 00050 3521 00 eppbp lp|add_iom.t 000455 0a 000330 7100 00 tra .return_code 000050 add_iom.t: 000050 bss ,gate_entry_data_size 48 hgate add_main,reconfig,add_main,3 000006 segdef add_main 000006 add_main: 000006 0a 000457 7100 00 tra add_main.e 000456 a8 000006 000060 zero 3*2,add_main.t 000457 add_main.e: 000457 0a 000265 7020 00 tsx2 .setup 000460 aa 000000 6340 07 ldi =0,dl 000461 4a 4 02154 3521 20 short_call reconfig$add_main(ap|0) 000462 aa 7 00036 6701 20 000463 aa 6 00030 3701 20 000464 9a 4 00060 3521 00 eppbp lp|add_main.t 000465 0a 000330 7100 00 tra .return_code 000060 add_main.t: 000060 bss ,gate_entry_data_size 49 hgate add_scu,reconfig,add_scu,4 000007 segdef add_scu 000007 add_scu: 000007 0a 000467 7100 00 tra add_scu.e 000466 a8 000010 000070 zero 4*2,add_scu.t 000467 add_scu.e: 000467 0a 000265 7020 00 tsx2 .setup 000470 aa 000000 6340 07 ldi =0,dl 000471 4a 4 02156 3521 20 short_call reconfig$add_scu(ap|0) 000472 aa 7 00036 6701 20 000473 aa 6 00030 3701 20 000474 9a 4 00070 3521 00 eppbp lp|add_scu.t 000475 0a 000330 7100 00 tra .return_code 000070 add_scu.t: 000070 bss ,gate_entry_data_size 50 hgate append_master_dir,append,master_dir,7 000010 segdef append_master_dir 000010 append_master_dir: 000010 0a 000477 7100 00 tra append_master_dir.e 000476 a8 000016 000100 zero 7*2,append_master_dir.t 000477 append_master_dir.e: 000477 0a 000265 7020 00 tsx2 .setup 000500 aa 000000 6340 07 ldi =0,dl 000501 4a 4 02160 3521 20 short_call append$master_dir(ap|0) 000502 aa 7 00036 6701 20 000503 aa 6 00030 3701 20 000504 9a 4 00100 3521 00 eppbp lp|append_master_dir.t 000505 0a 000330 7100 00 tra .return_code 000100 append_master_dir.t: 000100 bss ,gate_entry_data_size 51 hgate call_bce,call_bce,call_bce,0 000011 segdef call_bce 000011 call_bce: 000011 0a 000507 7100 00 tra call_bce.e 000506 a8 000000 000110 zero 0*2,call_bce.t 000507 call_bce.e: 000507 0a 000265 7020 00 tsx2 .setup 000510 aa 000000 6340 07 ldi =0,dl 000511 4a 4 02162 3521 20 short_call call_bce$call_bce(ap|0) 000512 aa 7 00036 6701 20 000513 aa 6 00030 3701 20 000514 9a 4 00110 3521 00 eppbp lp|call_bce.t 000515 0a 000330 7100 00 tra .return_code 000110 call_bce.t: 000110 bss ,gate_entry_data_size 52 hgate clear_vtoce,priv_delete_vtoce,clear,3 000012 segdef clear_vtoce 000012 clear_vtoce: 000012 0a 000517 7100 00 tra clear_vtoce.e 000516 a8 000006 000120 zero 3*2,clear_vtoce.t 000517 clear_vtoce.e: 000517 0a 000265 7020 00 tsx2 .setup 000520 aa 000000 6340 07 ldi =0,dl 000521 4a 4 02164 3521 20 short_call priv_delete_vtoce$clear(ap|0) 000522 aa 7 00036 6701 20 000523 aa 6 00030 3701 20 000524 9a 4 00120 3521 00 eppbp lp|clear_vtoce.t 000525 0a 000330 7100 00 tra .return_code 000120 clear_vtoce.t: 000120 bss ,gate_entry_data_size 53 hgate configure_fnp,fnp_util,configure,2 000013 segdef configure_fnp 000013 configure_fnp: 000013 0a 000527 7100 00 tra configure_fnp.e 000526 a8 000004 000130 zero 2*2,configure_fnp.t 000527 configure_fnp.e: 000527 0a 000265 7020 00 tsx2 .setup 000530 aa 000000 6340 07 ldi =0,dl 000531 4a 4 02166 3521 20 short_call fnp_util$configure(ap|0) 000532 aa 7 00036 6701 20 000533 aa 6 00030 3701 20 000534 9a 4 00130 3521 00 eppbp lp|configure_fnp.t 000535 0a 000330 7100 00 tra .return_code 000130 configure_fnp.t: 000130 bss ,gate_entry_data_size 54 hgate copy_fdump,copy_fdump,copy_fdump,1 000014 segdef copy_fdump 000014 copy_fdump: 000014 0a 000537 7100 00 tra copy_fdump.e 000536 a8 000002 000140 zero 1*2,copy_fdump.t 000537 copy_fdump.e: 000537 0a 000265 7020 00 tsx2 .setup 000540 aa 000000 6340 07 ldi =0,dl 000541 4a 4 02170 3521 20 short_call copy_fdump$copy_fdump(ap|0) 000542 aa 7 00036 6701 20 000543 aa 6 00030 3701 20 000544 9a 4 00140 3521 00 eppbp lp|copy_fdump.t 000545 0a 000330 7100 00 tra .return_code 000140 copy_fdump.t: 000140 bss ,gate_entry_data_size 55 hgate copy_stack_0,copy_stack_0,copy_stack_0,3 000015 segdef copy_stack_0 000015 copy_stack_0: 000015 0a 000547 7100 00 tra copy_stack_0.e 000546 a8 000006 000150 zero 3*2,copy_stack_0.t 000547 copy_stack_0.e: 000547 0a 000265 7020 00 tsx2 .setup 000550 aa 000000 6340 07 ldi =0,dl 000551 4a 4 02172 3521 20 short_call copy_stack_0$copy_stack_0(ap|0) 000552 aa 7 00036 6701 20 000553 aa 6 00030 3701 20 000554 9a 4 00150 3521 00 eppbp lp|copy_stack_0.t 000555 0a 000330 7100 00 tra .return_code 000150 copy_stack_0.t: 000150 bss ,gate_entry_data_size 56 hgate correct_dir_qused,correct_qused,correct_dir_qused,5,bad_dir_trap 000016 segdef correct_dir_qused 000016 correct_dir_qused: 000016 0a 000557 7100 00 tra correct_dir_qused.e 000556 a8 000012 000160 zero 5*2,correct_dir_qused.t 000557 correct_dir_qused.e: 000557 0a 000265 7020 00 tsx2 .setup 000560 0a 002556 7000 00 tsx0 .set_dir_trap 000561 aa 000000 6340 07 ldi =0,dl 000562 4a 4 02174 3521 20 short_call correct_qused$correct_dir_qused(ap|0) 000563 aa 7 00036 6701 20 000564 aa 6 00030 3701 20 000565 9a 4 00160 3521 00 eppbp lp|correct_dir_qused.t 000566 0a 000330 7100 00 tra .return_code 000160 correct_dir_qused.t: 000160 bss ,gate_entry_data_size 57 hgate correct_qused,correct_qused,correct_qused,7,bad_dir_trap 000017 segdef correct_qused 000017 correct_qused: 000017 0a 000570 7100 00 tra correct_qused.e 000567 a8 000016 000170 zero 7*2,correct_qused.t 000570 correct_qused.e: 000570 0a 000265 7020 00 tsx2 .setup 000571 0a 002556 7000 00 tsx0 .set_dir_trap 000572 aa 000000 6340 07 ldi =0,dl 000573 4a 4 02176 3521 20 short_call correct_qused$correct_qused(ap|0) 000574 aa 7 00036 6701 20 000575 aa 6 00030 3701 20 000576 9a 4 00170 3521 00 eppbp lp|correct_qused.t 000577 0a 000330 7100 00 tra .return_code 000170 correct_qused.t: 000170 bss ,gate_entry_data_size 58 hgate correct_seg_qused,correct_qused,correct_seg_qused,5,bad_dir_trap 000020 segdef correct_seg_qused 000020 correct_seg_qused: 000020 0a 000601 7100 00 tra correct_seg_qused.e 000600 a8 000012 000200 zero 5*2,correct_seg_qused.t 000601 correct_seg_qused.e: 000601 0a 000265 7020 00 tsx2 .setup 000602 0a 002556 7000 00 tsx0 .set_dir_trap 000603 aa 000000 6340 07 ldi =0,dl 000604 4a 4 02200 3521 20 short_call correct_qused$correct_seg_qused(ap|0) 000605 aa 7 00036 6701 20 000606 aa 6 00030 3701 20 000607 9a 4 00200 3521 00 eppbp lp|correct_seg_qused.t 000610 0a 000330 7100 00 tra .return_code 000200 correct_seg_qused.t: 000200 bss ,gate_entry_data_size 59 hgate create_proc,act_proc,create,2 000021 segdef create_proc 000021 create_proc: 000021 0a 000612 7100 00 tra create_proc.e 000611 a8 000004 000210 zero 2*2,create_proc.t 000612 create_proc.e: 000612 0a 000265 7020 00 tsx2 .setup 000613 aa 000000 6340 07 ldi =0,dl 000614 4a 4 02202 3521 20 short_call act_proc$create(ap|0) 000615 aa 7 00036 6701 20 000616 aa 6 00030 3701 20 000617 9a 4 00210 3521 00 eppbp lp|create_proc.t 000620 0a 000330 7100 00 tra .return_code 000210 create_proc.t: 000210 bss ,gate_entry_data_size 60 hgate deactivate,demand_deactivate,force,2 000022 segdef deactivate 000022 deactivate: 000022 0a 000622 7100 00 tra deactivate.e 000621 a8 000004 000220 zero 2*2,deactivate.t 000622 deactivate.e: 000622 0a 000265 7020 00 tsx2 .setup 000623 aa 000000 6340 07 ldi =0,dl 000624 4a 4 02204 3521 20 short_call demand_deactivate$force(ap|0) 000625 aa 7 00036 6701 20 000626 aa 6 00030 3701 20 000627 9a 4 00220 3521 00 eppbp lp|deactivate.t 000630 0a 000330 7100 00 tra .return_code 000220 deactivate.t: 000220 bss ,gate_entry_data_size 61 hgate deconfigure_fnp,fnp_util,deconfigure,2 000023 segdef deconfigure_fnp 000023 deconfigure_fnp: 000023 0a 000632 7100 00 tra deconfigure_fnp.e 000631 a8 000004 000230 zero 2*2,deconfigure_fnp.t 000632 deconfigure_fnp.e: 000632 0a 000265 7020 00 tsx2 .setup 000633 aa 000000 6340 07 ldi =0,dl 000634 4a 4 02206 3521 20 short_call fnp_util$deconfigure(ap|0) 000635 aa 7 00036 6701 20 000636 aa 6 00030 3701 20 000637 9a 4 00230 3521 00 eppbp lp|deconfigure_fnp.t 000640 0a 000330 7100 00 tra .return_code 000230 deconfigure_fnp.t: 000230 bss ,gate_entry_data_size 62 hgate define_work_classes,tc,define_work_classes,2 000024 segdef define_work_classes 000024 define_work_classes: 000024 0a 000642 7100 00 tra define_work_classes.e 000641 a8 000004 000240 zero 2*2,define_work_classes.t 000642 define_work_classes.e: 000642 0a 000265 7020 00 tsx2 .setup 000643 aa 000000 6340 07 ldi =0,dl 000644 4a 4 02210 3521 20 short_call tc$define_work_classes(ap|0) 000645 aa 7 00036 6701 20 000646 aa 6 00030 3701 20 000647 9a 4 00240 3521 00 eppbp lp|define_work_classes.t 000650 0a 000330 7100 00 tra .return_code 000240 define_work_classes.t: 000240 bss ,gate_entry_data_size 63 hgate del_cpu,reconfig,del_cpu,2 000025 segdef del_cpu 000025 del_cpu: 000025 0a 000652 7100 00 tra del_cpu.e 000651 a8 000004 000250 zero 2*2,del_cpu.t 000652 del_cpu.e: 000652 0a 000265 7020 00 tsx2 .setup 000653 aa 000000 6340 07 ldi =0,dl 000654 4a 4 02212 3521 20 short_call reconfig$del_cpu(ap|0) 000655 aa 7 00036 6701 20 000656 aa 6 00030 3701 20 000657 9a 4 00250 3521 00 eppbp lp|del_cpu.t 000660 0a 000330 7100 00 tra .return_code 000250 del_cpu.t: 000250 bss ,gate_entry_data_size 64 hgate del_main,reconfig,del_main,3 000026 segdef del_main 000026 del_main: 000026 0a 000662 7100 00 tra del_main.e 000661 a8 000006 000260 zero 3*2,del_main.t 000662 del_main.e: 000662 0a 000265 7020 00 tsx2 .setup 000663 aa 000000 6340 07 ldi =0,dl 000664 4a 4 02214 3521 20 short_call reconfig$del_main(ap|0) 000665 aa 7 00036 6701 20 000666 aa 6 00030 3701 20 000667 9a 4 00260 3521 00 eppbp lp|del_main.t 000670 0a 000330 7100 00 tra .return_code 000260 del_main.t: 000260 bss ,gate_entry_data_size 65 hgate del_scu,reconfig,del_scu,3 000027 segdef del_scu 000027 del_scu: 000027 0a 000672 7100 00 tra del_scu.e 000671 a8 000006 000270 zero 3*2,del_scu.t 000672 del_scu.e: 000672 0a 000265 7020 00 tsx2 .setup 000673 aa 000000 6340 07 ldi =0,dl 000674 4a 4 02216 3521 20 short_call reconfig$del_scu(ap|0) 000675 aa 7 00036 6701 20 000676 aa 6 00030 3701 20 000677 9a 4 00270 3521 00 eppbp lp|del_scu.t 000700 0a 000330 7100 00 tra .return_code 000270 del_scu.t: 000270 bss ,gate_entry_data_size 66 hgate delentry_file,level_0_,delentry_file,3,bad_dir_trap 000030 segdef delentry_file 000030 delentry_file: 000030 0a 000702 7100 00 tra delentry_file.e 000701 a8 000006 000300 zero 3*2,delentry_file.t 000702 delentry_file.e: 000702 0a 000265 7020 00 tsx2 .setup 000703 0a 002556 7000 00 tsx0 .set_dir_trap 000704 aa 000000 6340 07 ldi =0,dl 000705 4a 4 02220 3521 20 short_call level_0_$delentry_file(ap|0) 000706 aa 7 00036 6701 20 000707 aa 6 00030 3701 20 000710 9a 4 00300 3521 00 eppbp lp|delentry_file.t 000711 0a 000330 7100 00 tra .return_code 000300 delentry_file.t: 000300 bss ,gate_entry_data_size 67 hgate delete_acl_entries,level_0_,delete_acl_entries,5,bad_dir_trap 000031 segdef delete_acl_entries 000031 delete_acl_entries: 000031 0a 000713 7100 00 tra delete_acl_entries.e 000712 a8 000012 000310 zero 5*2,delete_acl_entries.t 000713 delete_acl_entries.e: 000713 0a 000265 7020 00 tsx2 .setup 000714 0a 002556 7000 00 tsx0 .set_dir_trap 000715 aa 000000 6340 07 ldi =0,dl 000716 4a 4 02222 3521 20 short_call level_0_$delete_acl_entries(ap|0) 000717 aa 7 00036 6701 20 000720 aa 6 00030 3701 20 000721 9a 4 00310 3521 00 eppbp lp|delete_acl_entries.t 000722 0a 000330 7100 00 tra .return_code 000310 delete_acl_entries.t: 000310 bss ,gate_entry_data_size 68 hgate delete_channel,io_reconfig,delete_channel,2 000032 segdef delete_channel 000032 delete_channel: 000032 0a 000724 7100 00 tra delete_channel.e 000723 a8 000004 000320 zero 2*2,delete_channel.t 000724 delete_channel.e: 000724 0a 000265 7020 00 tsx2 .setup 000725 aa 000000 6340 07 ldi =0,dl 000726 4a 4 02224 3521 20 short_call io_reconfig$delete_channel(ap|0) 000727 aa 7 00036 6701 20 000730 aa 6 00030 3701 20 000731 9a 4 00320 3521 00 eppbp lp|delete_channel.t 000732 0a 000330 7100 00 tra .return_code 000320 delete_channel.t: 000320 bss ,gate_entry_data_size 69 hgate delete_dir_acl_entries,level_0_,delete_dir_acl_entries,5,bad_dir_trap 000033 segdef delete_dir_acl_entries 000033 delete_dir_acl_entries: 000033 0a 000734 7100 00 tra delete_dir_acl_entries.e 000733 a8 000012 000330 zero 5*2,delete_dir_acl_entries.t 000734 delete_dir_acl_entries.e: 000734 0a 000265 7020 00 tsx2 .setup 000735 0a 002556 7000 00 tsx0 .set_dir_trap 000736 aa 000000 6340 07 ldi =0,dl 000737 4a 4 02226 3521 20 short_call level_0_$delete_dir_acl_entries(ap|0) 000740 aa 7 00036 6701 20 000741 aa 6 00030 3701 20 000742 9a 4 00330 3521 00 eppbp lp|delete_dir_acl_entries.t 000743 0a 000330 7100 00 tra .return_code 000330 delete_dir_acl_entries.t: 000330 bss ,gate_entry_data_size 70 hgate delete_iom,io_reconfig,delete_iom,2 000034 segdef delete_iom 000034 delete_iom: 000034 0a 000745 7100 00 tra delete_iom.e 000744 a8 000004 000340 zero 2*2,delete_iom.t 000745 delete_iom.e: 000745 0a 000265 7020 00 tsx2 .setup 000746 aa 000000 6340 07 ldi =0,dl 000747 4a 4 02230 3521 20 short_call io_reconfig$delete_iom(ap|0) 000750 aa 7 00036 6701 20 000751 aa 6 00030 3701 20 000752 9a 4 00340 3521 00 eppbp lp|delete_iom.t 000753 0a 000330 7100 00 tra .return_code 000340 delete_iom.t: 000340 bss ,gate_entry_data_size 71 hgate delete_vtoce,priv_delete_vtoce,priv_delete_vtoce,4 000035 segdef delete_vtoce 000035 delete_vtoce: 000035 0a 000755 7100 00 tra delete_vtoce.e 000754 a8 000010 000350 zero 4*2,delete_vtoce.t 000755 delete_vtoce.e: 000755 0a 000265 7020 00 tsx2 .setup 000756 aa 000000 6340 07 ldi =0,dl 000757 4a 4 02232 3521 20 short_call priv_delete_vtoce$priv_delete_vtoce(ap|0) 000760 aa 7 00036 6701 20 000761 aa 6 00030 3701 20 000762 9a 4 00350 3521 00 eppbp lp|delete_vtoce.t 000763 0a 000330 7100 00 tra .return_code 000350 delete_vtoce.t: 000350 bss ,gate_entry_data_size 72 hgate destroy_process_begin,deact_proc,destroy_process_begin,2 000036 segdef destroy_process_begin 000036 destroy_process_begin: 000036 0a 000765 7100 00 tra destroy_process_begin.e 000764 a8 000004 000360 zero 2*2,destroy_process_begin.t 000765 destroy_process_begin.e: 000765 0a 000265 7020 00 tsx2 .setup 000766 aa 000000 6340 07 ldi =0,dl 000767 4a 4 02234 3521 20 short_call deact_proc$destroy_process_begin(ap|0) 000770 aa 7 00036 6701 20 000771 aa 6 00030 3701 20 000772 9a 4 00360 3521 00 eppbp lp|destroy_process_begin.t 000773 0a 000330 7100 00 tra .return_code 000360 destroy_process_begin.t: 000360 bss ,gate_entry_data_size 73 hgate destroy_process_finish,deact_proc,destroy_process_finish,2 000037 segdef destroy_process_finish 000037 destroy_process_finish: 000037 0a 000775 7100 00 tra destroy_process_finish.e 000774 a8 000004 000370 zero 2*2,destroy_process_finish.t 000775 destroy_process_finish.e: 000775 0a 000265 7020 00 tsx2 .setup 000776 aa 000000 6340 07 ldi =0,dl 000777 4a 4 02236 3521 20 short_call deact_proc$destroy_process_finish(ap|0) 001000 aa 7 00036 6701 20 001001 aa 6 00030 3701 20 001002 9a 4 00370 3521 00 eppbp lp|destroy_process_finish.t 001003 0a 000330 7100 00 tra .return_code 000370 destroy_process_finish.t: 000370 bss ,gate_entry_data_size 74 hgate dir_get_reset_quota,quota,dqlong_reset,0,bad_dir_trap 000040 segdef dir_get_reset_quota 000040 dir_get_reset_quota: 000040 0a 001005 7100 00 tra dir_get_reset_quota.e 001004 a8 000000 000400 zero 0*2,dir_get_reset_quota.t 001005 dir_get_reset_quota.e: 001005 0a 000265 7020 00 tsx2 .setup 001006 0a 002556 7000 00 tsx0 .set_dir_trap 001007 aa 000000 6340 07 ldi =0,dl 001010 4a 4 02240 3521 20 short_call quota$dqlong_reset(ap|0) 001011 aa 7 00036 6701 20 001012 aa 6 00030 3701 20 001013 9a 4 00400 3521 00 eppbp lp|dir_get_reset_quota.t 001014 0a 000330 7100 00 tra .return_code 000400 dir_get_reset_quota.t: 000400 bss ,gate_entry_data_size 75 hgate dir_quota_read,quota,priv_dqread,8,bad_dir_trap 000041 segdef dir_quota_read 000041 dir_quota_read: 000041 0a 001016 7100 00 tra dir_quota_read.e 001015 a8 000020 000410 zero 8*2,dir_quota_read.t 001016 dir_quota_read.e: 001016 0a 000265 7020 00 tsx2 .setup 001017 0a 002556 7000 00 tsx0 .set_dir_trap 001020 aa 000000 6340 07 ldi =0,dl 001021 4a 4 02242 3521 20 short_call quota$priv_dqread(ap|0) 001022 aa 7 00036 6701 20 001023 aa 6 00030 3701 20 001024 9a 4 00410 3521 00 eppbp lp|dir_quota_read.t 001025 0a 000330 7100 00 tra .return_code 000410 dir_quota_read.t: 000410 bss ,gate_entry_data_size 76 hgate dir_quota_restor,quota,dqrestor,0,bad_dir_trap 000042 segdef dir_quota_restor 000042 dir_quota_restor: 000042 0a 001027 7100 00 tra dir_quota_restor.e 001026 a8 000000 000420 zero 0*2,dir_quota_restor.t 001027 dir_quota_restor.e: 001027 0a 000265 7020 00 tsx2 .setup 001030 0a 002556 7000 00 tsx0 .set_dir_trap 001031 aa 000000 6340 07 ldi =0,dl 001032 4a 4 02244 3521 20 short_call quota$dqrestor(ap|0) 001033 aa 7 00036 6701 20 001034 aa 6 00030 3701 20 001035 9a 4 00420 3521 00 eppbp lp|dir_quota_restor.t 001036 0a 000330 7100 00 tra .return_code 000420 dir_quota_restor.t: 000420 bss ,gate_entry_data_size 77 hgate dir_quota_set,quota,dqset,0,bad_dir_trap 000043 segdef dir_quota_set 000043 dir_quota_set: 000043 0a 001040 7100 00 tra dir_quota_set.e 001037 a8 000000 000430 zero 0*2,dir_quota_set.t 001040 dir_quota_set.e: 001040 0a 000265 7020 00 tsx2 .setup 001041 0a 002556 7000 00 tsx0 .set_dir_trap 001042 aa 000000 6340 07 ldi =0,dl 001043 4a 4 02246 3521 20 short_call quota$dqset(ap|0) 001044 aa 7 00036 6701 20 001045 aa 6 00030 3701 20 001046 9a 4 00430 3521 00 eppbp lp|dir_quota_set.t 001047 0a 000330 7100 00 tra .return_code 000430 dir_quota_set.t: 000430 bss ,gate_entry_data_size 78 hgate disk_tune,disk_control,tune,4 000044 segdef disk_tune 000044 disk_tune: 000044 0a 001051 7100 00 tra disk_tune.e 001050 a8 000010 000440 zero 4*2,disk_tune.t 001051 disk_tune.e: 001051 0a 000265 7020 00 tsx2 .setup 001052 aa 000000 6340 07 ldi =0,dl 001053 4a 4 02250 3521 20 short_call disk_control$tune(ap|0) 001054 aa 7 00036 6701 20 001055 aa 6 00030 3701 20 001056 9a 4 00440 3521 00 eppbp lp|disk_tune.t 001057 0a 000330 7100 00 tra .return_code 000440 disk_tune.t: 000440 bss ,gate_entry_data_size 79 hgate fdump_fnp,fnp_util,fdump,5 000045 segdef fdump_fnp 000045 fdump_fnp: 000045 0a 001061 7100 00 tra fdump_fnp.e 001060 a8 000012 000450 zero 5*2,fdump_fnp.t 001061 fdump_fnp.e: 001061 0a 000265 7020 00 tsx2 .setup 001062 aa 000000 6340 07 ldi =0,dl 001063 4a 4 02252 3521 20 short_call fnp_util$fdump(ap|0) 001064 aa 7 00036 6701 20 001065 aa 6 00030 3701 20 001066 9a 4 00450 3521 00 eppbp lp|fdump_fnp.t 001067 0a 000330 7100 00 tra .return_code 000450 fdump_fnp.t: 000450 bss ,gate_entry_data_size 80 hgate flush_ast_pool,flush_ast_pool,flush_ast_pool,1 000046 segdef flush_ast_pool 000046 flush_ast_pool: 000046 0a 001071 7100 00 tra flush_ast_pool.e 001070 a8 000002 000460 zero 1*2,flush_ast_pool.t 001071 flush_ast_pool.e: 001071 0a 000265 7020 00 tsx2 .setup 001072 aa 000000 6340 07 ldi =0,dl 001073 4a 4 02254 3521 20 short_call flush_ast_pool$flush_ast_pool(ap|0) 001074 aa 7 00036 6701 20 001075 aa 6 00030 3701 20 001076 9a 4 00460 3521 00 eppbp lp|flush_ast_pool.t 001077 0a 000330 7100 00 tra .return_code 000460 flush_ast_pool.t: 000460 bss ,gate_entry_data_size 81 hgate flush_core,pc,flush_core,0 000047 segdef flush_core 000047 flush_core: 000047 0a 001101 7100 00 tra flush_core.e 001100 a8 000000 000470 zero 0*2,flush_core.t 001101 flush_core.e: 001101 0a 000265 7020 00 tsx2 .setup 001102 aa 000000 6340 07 ldi =0,dl 001103 4a 4 02256 3521 20 short_call pc$flush_core(ap|0) 001104 aa 7 00036 6701 20 001105 aa 6 00030 3701 20 001106 9a 4 00470 3521 00 eppbp lp|flush_core.t 001107 0a 000330 7100 00 tra .return_code 000470 flush_core.t: 000470 bss ,gate_entry_data_size 82 hgate fs_get_trans_sw,fs_get,trans_sw,0 000050 segdef fs_get_trans_sw 000050 fs_get_trans_sw: 000050 0a 001111 7100 00 tra fs_get_trans_sw.e 001110 a8 000000 000500 zero 0*2,fs_get_trans_sw.t 001111 fs_get_trans_sw.e: 001111 0a 000265 7020 00 tsx2 .setup 001112 aa 000000 6340 07 ldi =0,dl 001113 4a 4 02260 3521 20 short_call fs_get$trans_sw(ap|0) 001114 aa 7 00036 6701 20 001115 aa 6 00030 3701 20 001116 9a 4 00500 3521 00 eppbp lp|fs_get_trans_sw.t 001117 0a 000330 7100 00 tra .return_code 000500 fs_get_trans_sw.t: 000500 bss ,gate_entry_data_size 83 hgate get_devx,priv_channel_manager,get_devx,3 000051 segdef get_devx 000051 get_devx: 000051 0a 001121 7100 00 tra get_devx.e 001120 a8 000006 000510 zero 3*2,get_devx.t 001121 get_devx.e: 001121 0a 000265 7020 00 tsx2 .setup 001122 aa 000000 6340 07 ldi =0,dl 001123 4a 4 02262 3521 20 short_call priv_channel_manager$get_devx(ap|0) 001124 aa 7 00036 6701 20 001125 aa 6 00030 3701 20 001126 9a 4 00510 3521 00 eppbp lp|get_devx.t 001127 0a 000330 7100 00 tra .return_code 000510 get_devx.t: 000510 bss ,gate_entry_data_size 84 hgate get_fdump_num,copy_fdump,get_erf_no,6 000052 segdef get_fdump_num 000052 get_fdump_num: 000052 0a 001131 7100 00 tra get_fdump_num.e 001130 a8 000014 000520 zero 6*2,get_fdump_num.t 001131 get_fdump_num.e: 001131 0a 000265 7020 00 tsx2 .setup 001132 aa 000000 6340 07 ldi =0,dl 001133 4a 4 02264 3521 20 short_call copy_fdump$get_erf_no(ap|0) 001134 aa 7 00036 6701 20 001135 aa 6 00030 3701 20 001136 9a 4 00520 3521 00 eppbp lp|get_fdump_num.t 001137 0a 000330 7100 00 tra .return_code 000520 get_fdump_num.t: 000520 bss ,gate_entry_data_size 85 hgate get_ipc_operands,tc_util,get_ipc_operands_priv,4 000053 segdef get_ipc_operands 000053 get_ipc_operands: 000053 0a 001141 7100 00 tra get_ipc_operands.e 001140 a8 000010 000530 zero 4*2,get_ipc_operands.t 001141 get_ipc_operands.e: 001141 0a 000265 7020 00 tsx2 .setup 001142 aa 000000 6340 07 ldi =0,dl 001143 4a 4 02266 3521 20 short_call tc_util$get_ipc_operands_priv(ap|0) 001144 aa 7 00036 6701 20 001145 aa 6 00030 3701 20 001146 9a 4 00530 3521 00 eppbp lp|get_ipc_operands.t 001147 0a 000330 7100 00 tra .return_code 000530 get_ipc_operands.t: 000530 bss ,gate_entry_data_size 86 hgate get_reset_quota,quota,qlong_reset,0,bad_dir_trap 000054 segdef get_reset_quota 000054 get_reset_quota: 000054 0a 001151 7100 00 tra get_reset_quota.e 001150 a8 000000 000540 zero 0*2,get_reset_quota.t 001151 get_reset_quota.e: 001151 0a 000265 7020 00 tsx2 .setup 001152 0a 002556 7000 00 tsx0 .set_dir_trap 001153 aa 000000 6340 07 ldi =0,dl 001154 4a 4 02270 3521 20 short_call quota$qlong_reset(ap|0) 001155 aa 7 00036 6701 20 001156 aa 6 00030 3701 20 001157 9a 4 00540 3521 00 eppbp lp|get_reset_quota.t 001160 0a 000330 7100 00 tra .return_code 000540 get_reset_quota.t: 000540 bss ,gate_entry_data_size 87 hgate get_user_privileges,other_process_info,get_privileges,3 000055 segdef get_user_privileges 000055 get_user_privileges: 000055 0a 001162 7100 00 tra get_user_privileges.e 001161 a8 000006 000550 zero 3*2,get_user_privileges.t 001162 get_user_privileges.e: 001162 0a 000265 7020 00 tsx2 .setup 001163 aa 000000 6340 07 ldi =0,dl 001164 4a 4 02272 3521 20 short_call other_process_info$get_privileges(ap|0) 001165 aa 7 00036 6701 20 001166 aa 6 00030 3701 20 001167 9a 4 00550 3521 00 eppbp lp|get_user_privileges.t 001170 0a 000330 7100 00 tra .return_code 000550 get_user_privileges.t: 000550 bss ,gate_entry_data_size 88 hgate history_regs_get,history_reg_save,per_system_get,1 000056 segdef history_regs_get 000056 history_regs_get: 000056 0a 001172 7100 00 tra history_regs_get.e 001171 a8 000002 000560 zero 1*2,history_regs_get.t 001172 history_regs_get.e: 001172 0a 000265 7020 00 tsx2 .setup 001173 aa 000000 6340 07 ldi =0,dl 001174 4a 4 02274 3521 20 short_call history_reg_save$per_system_get(ap|0) 001175 aa 7 00036 6701 20 001176 aa 6 00030 3701 20 001177 9a 4 00560 3521 00 eppbp lp|history_regs_get.t 001200 0a 000330 7100 00 tra .return_code 000560 history_regs_get.t: 000560 bss ,gate_entry_data_size 89 hgate history_regs_set,history_reg_save,per_system_set,1 000057 segdef history_regs_set 000057 history_regs_set: 000057 0a 001202 7100 00 tra history_regs_set.e 001201 a8 000002 000570 zero 1*2,history_regs_set.t 001202 history_regs_set.e: 001202 0a 000265 7020 00 tsx2 .setup 001203 aa 000000 6340 07 ldi =0,dl 001204 4a 4 02276 3521 20 short_call history_reg_save$per_system_set(ap|0) 001205 aa 7 00036 6701 20 001206 aa 6 00030 3701 20 001207 9a 4 00570 3521 00 eppbp lp|history_regs_set.t 001210 0a 000330 7100 00 tra .return_code 000570 history_regs_set.t: 000570 bss ,gate_entry_data_size 90 hgate init_channel,priv_channel_manager,init_channel,3 000060 segdef init_channel 000060 init_channel: 000060 0a 001212 7100 00 tra init_channel.e 001211 a8 000006 000600 zero 3*2,init_channel.t 001212 init_channel.e: 001212 0a 000265 7020 00 tsx2 .setup 001213 aa 000000 6340 07 ldi =0,dl 001214 4a 4 02300 3521 20 short_call priv_channel_manager$init_channel(ap|0) 001215 aa 7 00036 6701 20 001216 aa 6 00030 3701 20 001217 9a 4 00600 3521 00 eppbp lp|init_channel.t 001220 0a 000330 7100 00 tra .return_code 000600 init_channel.t: 000600 bss ,gate_entry_data_size 91 hgate init_multiplexer,priv_channel_manager,init_multiplexer,4 000061 segdef init_multiplexer 000061 init_multiplexer: 000061 0a 001222 7100 00 tra init_multiplexer.e 001221 a8 000010 000610 zero 4*2,init_multiplexer.t 001222 init_multiplexer.e: 001222 0a 000265 7020 00 tsx2 .setup 001223 aa 000000 6340 07 ldi =0,dl 001224 4a 4 02302 3521 20 short_call priv_channel_manager$init_multiplexer(ap|0) 001225 aa 7 00036 6701 20 001226 aa 6 00030 3701 20 001227 9a 4 00610 3521 00 eppbp lp|init_multiplexer.t 001230 0a 000330 7100 00 tra .return_code 000610 init_multiplexer.t: 000610 bss ,gate_entry_data_size 92 hgate ips_wakeup,tc_util,ips_wakeup,2 000062 segdef ips_wakeup 000062 ips_wakeup: 000062 0a 001232 7100 00 tra ips_wakeup.e 001231 a8 000004 000620 zero 2*2,ips_wakeup.t 001232 ips_wakeup.e: 001232 0a 000265 7020 00 tsx2 .setup 001233 aa 000000 6340 07 ldi =0,dl 001234 4a 4 02304 3521 20 short_call tc_util$ips_wakeup(ap|0) 001235 aa 7 00036 6701 20 001236 aa 6 00030 3701 20 001237 9a 4 00620 3521 00 eppbp lp|ips_wakeup.t 001240 0a 000330 7100 00 tra .return_code 000620 ips_wakeup.t: 000620 bss ,gate_entry_data_size 93 hgate lct_init,priv_channel_manager,lct_init,2 000063 segdef lct_init 000063 lct_init: 000063 0a 001242 7100 00 tra lct_init.e 001241 a8 000004 000630 zero 2*2,lct_init.t 001242 lct_init.e: 001242 0a 000265 7020 00 tsx2 .setup 001243 aa 000000 6340 07 ldi =0,dl 001244 4a 4 02306 3521 20 short_call priv_channel_manager$lct_init(ap|0) 001245 aa 7 00036 6701 20 001246 aa 6 00030 3701 20 001247 9a 4 00630 3521 00 eppbp lp|lct_init.t 001250 0a 000330 7100 00 tra .return_code 000630 lct_init.t: 000630 bss ,gate_entry_data_size 94 hgate load_fnp,fnp_util,load,8 000064 segdef load_fnp 000064 load_fnp: 000064 0a 001252 7100 00 tra load_fnp.e 001251 a8 000020 000640 zero 8*2,load_fnp.t 001252 load_fnp.e: 001252 0a 000265 7020 00 tsx2 .setup 001253 aa 000000 6340 07 ldi =0,dl 001254 4a 4 02310 3521 20 short_call fnp_util$load(ap|0) 001255 aa 7 00036 6701 20 001256 aa 6 00030 3701 20 001257 9a 4 00640 3521 00 eppbp lp|load_fnp.t 001260 0a 000330 7100 00 tra .return_code 000640 load_fnp.t: 000640 bss ,gate_entry_data_size 95 hgate ocdcm_console_info,ocdcm_,console_info,6 000065 segdef ocdcm_console_info 000065 ocdcm_console_info: 000065 0a 001262 7100 00 tra ocdcm_console_info.e 001261 a8 000014 000650 zero 6*2,ocdcm_console_info.t 001262 ocdcm_console_info.e: 001262 0a 000265 7020 00 tsx2 .setup 001263 aa 000000 6340 07 ldi =0,dl 001264 4a 4 02312 3521 20 short_call ocdcm_$console_info(ap|0) 001265 aa 7 00036 6701 20 001266 aa 6 00030 3701 20 001267 9a 4 00650 3521 00 eppbp lp|ocdcm_console_info.t 001270 0a 000330 7100 00 tra .return_code 000650 ocdcm_console_info.t: 000650 bss ,gate_entry_data_size 96 hgate ocdcm_get_input,ocdcm_,get_input,3 000066 segdef ocdcm_get_input 000066 ocdcm_get_input: 000066 0a 001272 7100 00 tra ocdcm_get_input.e 001271 a8 000006 000660 zero 3*2,ocdcm_get_input.t 001272 ocdcm_get_input.e: 001272 0a 000265 7020 00 tsx2 .setup 001273 aa 000000 6340 07 ldi =0,dl 001274 4a 4 02314 3521 20 short_call ocdcm_$get_input(ap|0) 001275 aa 7 00036 6701 20 001276 aa 6 00030 3701 20 001277 9a 4 00660 3521 00 eppbp lp|ocdcm_get_input.t 001300 0a 000330 7100 00 tra .return_code 000660 ocdcm_get_input.t: 000660 bss ,gate_entry_data_size 97 hgate ocdcm_err_event_chan,ocdcm_,err_event_chan,1 000067 segdef ocdcm_err_event_chan 000067 ocdcm_err_event_chan: 000067 0a 001302 7100 00 tra ocdcm_err_event_chan.e 001301 a8 000002 000670 zero 1*2,ocdcm_err_event_chan.t 001302 ocdcm_err_event_chan.e: 001302 0a 000265 7020 00 tsx2 .setup 001303 aa 000000 6340 07 ldi =0,dl 001304 4a 4 02316 3521 20 short_call ocdcm_$err_event_chan(ap|0) 001305 aa 7 00036 6701 20 001306 aa 6 00030 3701 20 001307 9a 4 00670 3521 00 eppbp lp|ocdcm_err_event_chan.t 001310 0a 000330 7100 00 tra .return_code 000670 ocdcm_err_event_chan.t: 000670 bss ,gate_entry_data_size 98 hgate ocdcm_get_mc_output,ocdcm_,get_mc_output,3 000070 segdef ocdcm_get_mc_output 000070 ocdcm_get_mc_output: 000070 0a 001312 7100 00 tra ocdcm_get_mc_output.e 001311 a8 000006 000700 zero 3*2,ocdcm_get_mc_output.t 001312 ocdcm_get_mc_output.e: 001312 0a 000265 7020 00 tsx2 .setup 001313 aa 000000 6340 07 ldi =0,dl 001314 4a 4 02320 3521 20 short_call ocdcm_$get_mc_output(ap|0) 001315 aa 7 00036 6701 20 001316 aa 6 00030 3701 20 001317 9a 4 00700 3521 00 eppbp lp|ocdcm_get_mc_output.t 001320 0a 000330 7100 00 tra .return_code 000700 ocdcm_get_mc_output.t: 000700 bss ,gate_entry_data_size 99 hgate ocdcm_priority_io,ocdcm_,priority_io,1 000071 segdef ocdcm_priority_io 000071 ocdcm_priority_io: 000071 0a 001322 7100 00 tra ocdcm_priority_io.e 001321 a8 000002 000710 zero 1*2,ocdcm_priority_io.t 001322 ocdcm_priority_io.e: 001322 0a 000265 7020 00 tsx2 .setup 001323 aa 000000 6340 07 ldi =0,dl 001324 4a 4 02322 3521 20 short_call ocdcm_$priority_io(ap|0) 001325 aa 7 00036 6701 20 001326 aa 6 00030 3701 20 001327 9a 4 00710 3521 00 eppbp lp|ocdcm_priority_io.t 001330 0a 000330 7100 00 tra .return_code 000710 ocdcm_priority_io.t: 000710 bss ,gate_entry_data_size 100 hgate ocdcm_printer_off,ocdcm_,printer_off,0 000072 segdef ocdcm_printer_off 000072 ocdcm_printer_off: 000072 0a 001332 7100 00 tra ocdcm_printer_off.e 001331 a8 000000 000720 zero 0*2,ocdcm_printer_off.t 001332 ocdcm_printer_off.e: 001332 0a 000265 7020 00 tsx2 .setup 001333 aa 000000 6340 07 ldi =0,dl 001334 4a 4 02324 3521 20 short_call ocdcm_$printer_off(ap|0) 001335 aa 7 00036 6701 20 001336 aa 6 00030 3701 20 001337 9a 4 00720 3521 00 eppbp lp|ocdcm_printer_off.t 001340 0a 000330 7100 00 tra .return_code 000720 ocdcm_printer_off.t: 000720 bss ,gate_entry_data_size 101 hgate ocdcm_printer_on,ocdcm_,printer_on,0 000073 segdef ocdcm_printer_on 000073 ocdcm_printer_on: 000073 0a 001342 7100 00 tra ocdcm_printer_on.e 001341 a8 000000 000730 zero 0*2,ocdcm_printer_on.t 001342 ocdcm_printer_on.e: 001342 0a 000265 7020 00 tsx2 .setup 001343 aa 000000 6340 07 ldi =0,dl 001344 4a 4 02326 3521 20 short_call ocdcm_$printer_on(ap|0) 001345 aa 7 00036 6701 20 001346 aa 6 00030 3701 20 001347 9a 4 00730 3521 00 eppbp lp|ocdcm_printer_on.t 001350 0a 000330 7100 00 tra .return_code 000730 ocdcm_printer_on.t: 000730 bss ,gate_entry_data_size 102 hgate ocdcm_queue_io,ocdcm_,queue_io,2 000074 segdef ocdcm_queue_io 000074 ocdcm_queue_io: 000074 0a 001352 7100 00 tra ocdcm_queue_io.e 001351 a8 000004 000740 zero 2*2,ocdcm_queue_io.t 001352 ocdcm_queue_io.e: 001352 0a 000265 7020 00 tsx2 .setup 001353 aa 000000 6340 07 ldi =0,dl 001354 4a 4 02330 3521 20 short_call ocdcm_$queue_io(ap|0) 001355 aa 7 00036 6701 20 001356 aa 6 00030 3701 20 001357 9a 4 00740 3521 00 eppbp lp|ocdcm_queue_io.t 001360 0a 000330 7100 00 tra .return_code 000740 ocdcm_queue_io.t: 000740 bss ,gate_entry_data_size 103 hgate ocdcm_reconfigure,ocdcm_,reconfigure,3 000075 segdef ocdcm_reconfigure 000075 ocdcm_reconfigure: 000075 0a 001362 7100 00 tra ocdcm_reconfigure.e 001361 a8 000006 000750 zero 3*2,ocdcm_reconfigure.t 001362 ocdcm_reconfigure.e: 001362 0a 000265 7020 00 tsx2 .setup 001363 aa 000000 6340 07 ldi =0,dl 001364 4a 4 02332 3521 20 short_call ocdcm_$reconfigure(ap|0) 001365 aa 7 00036 6701 20 001366 aa 6 00030 3701 20 001367 9a 4 00750 3521 00 eppbp lp|ocdcm_reconfigure.t 001370 0a 000330 7100 00 tra .return_code 000750 ocdcm_reconfigure.t: 000750 bss ,gate_entry_data_size 104 hgate ocdcm_set_prompt,ocdcm_,set_prompt,1 000076 segdef ocdcm_set_prompt 000076 ocdcm_set_prompt: 000076 0a 001372 7100 00 tra ocdcm_set_prompt.e 001371 a8 000002 000760 zero 1*2,ocdcm_set_prompt.t 001372 ocdcm_set_prompt.e: 001372 0a 000265 7020 00 tsx2 .setup 001373 aa 000000 6340 07 ldi =0,dl 001374 4a 4 02334 3521 20 short_call ocdcm_$set_prompt(ap|0) 001375 aa 7 00036 6701 20 001376 aa 6 00030 3701 20 001377 9a 4 00760 3521 00 eppbp lp|ocdcm_set_prompt.t 001400 0a 000330 7100 00 tra .return_code 000760 ocdcm_set_prompt.t: 000760 bss ,gate_entry_data_size 105 hgate process_status,tc_util,process_status,0 000077 segdef process_status 000077 process_status: 000077 0a 001402 7100 00 tra process_status.e 001401 a8 000000 000770 zero 0*2,process_status.t 001402 process_status.e: 001402 0a 000265 7020 00 tsx2 .setup 001403 aa 000000 6340 07 ldi =0,dl 001404 4a 4 02336 3521 20 short_call tc_util$process_status(ap|0) 001405 aa 7 00036 6701 20 001406 aa 6 00030 3701 20 001407 9a 4 00770 3521 00 eppbp lp|process_status.t 001410 0a 000330 7100 00 tra .return_code 000770 process_status.t: 000770 bss ,gate_entry_data_size 106 hgate pv_move_file,vacate_pv,move_seg_file,3 000100 segdef pv_move_file 000100 pv_move_file: 000100 0a 001412 7100 00 tra pv_move_file.e 001411 a8 000006 001000 zero 3*2,pv_move_file.t 001412 pv_move_file.e: 001412 0a 000265 7020 00 tsx2 .setup 001413 aa 000000 6340 07 ldi =0,dl 001414 4a 4 02340 3521 20 short_call vacate_pv$move_seg_file(ap|0) 001415 aa 7 00036 6701 20 001416 aa 6 00030 3701 20 001417 9a 4 01000 3521 00 eppbp lp|pv_move_file.t 001420 0a 000330 7100 00 tra .return_code 001000 pv_move_file.t: 001000 bss ,gate_entry_data_size 107 hgate pv_move_seg,vacate_pv,move_seg_seg,2 000101 segdef pv_move_seg 000101 pv_move_seg: 000101 0a 001422 7100 00 tra pv_move_seg.e 001421 a8 000004 001010 zero 2*2,pv_move_seg.t 001422 pv_move_seg.e: 001422 0a 000265 7020 00 tsx2 .setup 001423 aa 000000 6340 07 ldi =0,dl 001424 4a 4 02342 3521 20 short_call vacate_pv$move_seg_seg(ap|0) 001425 aa 7 00036 6701 20 001426 aa 6 00030 3701 20 001427 9a 4 01010 3521 00 eppbp lp|pv_move_seg.t 001430 0a 000330 7100 00 tra .return_code 001010 pv_move_seg.t: 001010 bss ,gate_entry_data_size 108 hgate pxss_set_timax,tc_util,set_timax,0 000102 segdef pxss_set_timax 000102 pxss_set_timax: 000102 0a 001432 7100 00 tra pxss_set_timax.e 001431 a8 000000 001020 zero 0*2,pxss_set_timax.t 001432 pxss_set_timax.e: 001432 0a 000265 7020 00 tsx2 .setup 001433 aa 000000 6340 07 ldi =0,dl 001434 4a 4 02344 3521 20 short_call tc_util$set_timax(ap|0) 001435 aa 7 00036 6701 20 001436 aa 6 00030 3701 20 001437 9a 4 01020 3521 00 eppbp lp|pxss_set_timax.t 001440 0a 000330 7100 00 tra .return_code 001020 pxss_set_timax.t: 001020 bss ,gate_entry_data_size 109 hgate quota_read,quota,priv_qread,8,bad_dir_trap 000103 segdef quota_read 000103 quota_read: 000103 0a 001442 7100 00 tra quota_read.e 001441 a8 000020 001030 zero 8*2,quota_read.t 001442 quota_read.e: 001442 0a 000265 7020 00 tsx2 .setup 001443 0a 002556 7000 00 tsx0 .set_dir_trap 001444 aa 000000 6340 07 ldi =0,dl 001445 4a 4 02346 3521 20 short_call quota$priv_qread(ap|0) 001446 aa 7 00036 6701 20 001447 aa 6 00030 3701 20 001450 9a 4 01030 3521 00 eppbp lp|quota_read.t 001451 0a 000330 7100 00 tra .return_code 001030 quota_read.t: 001030 bss ,gate_entry_data_size 110 hgate quota_reload,quota,qreload,0,bad_dir_trap 000104 segdef quota_reload 000104 quota_reload: 000104 0a 001453 7100 00 tra quota_reload.e 001452 a8 000000 001040 zero 0*2,quota_reload.t 001453 quota_reload.e: 001453 0a 000265 7020 00 tsx2 .setup 001454 0a 002556 7000 00 tsx0 .set_dir_trap 001455 aa 000000 6340 07 ldi =0,dl 001456 4a 4 02350 3521 20 short_call quota$qreload(ap|0) 001457 aa 7 00036 6701 20 001460 aa 6 00030 3701 20 001461 9a 4 01040 3521 00 eppbp lp|quota_reload.t 001462 0a 000330 7100 00 tra .return_code 001040 quota_reload.t: 001040 bss ,gate_entry_data_size 111 hgate quota_reset,quota,qreset,0,bad_dir_trap 000105 segdef quota_reset 000105 quota_reset: 000105 0a 001464 7100 00 tra quota_reset.e 001463 a8 000000 001050 zero 0*2,quota_reset.t 001464 quota_reset.e: 001464 0a 000265 7020 00 tsx2 .setup 001465 0a 002556 7000 00 tsx0 .set_dir_trap 001466 aa 000000 6340 07 ldi =0,dl 001467 4a 4 02352 3521 20 short_call quota$qreset(ap|0) 001470 aa 7 00036 6701 20 001471 aa 6 00030 3701 20 001472 9a 4 01050 3521 00 eppbp lp|quota_reset.t 001473 0a 000330 7100 00 tra .return_code 001050 quota_reset.t: 001050 bss ,gate_entry_data_size 112 hgate quota_restor,quota,qrestor,0,bad_dir_trap 000106 segdef quota_restor 000106 quota_restor: 000106 0a 001475 7100 00 tra quota_restor.e 001474 a8 000000 001060 zero 0*2,quota_restor.t 001475 quota_restor.e: 001475 0a 000265 7020 00 tsx2 .setup 001476 0a 002556 7000 00 tsx0 .set_dir_trap 001477 aa 000000 6340 07 ldi =0,dl 001500 4a 4 02354 3521 20 short_call quota$qrestor(ap|0) 001501 aa 7 00036 6701 20 001502 aa 6 00030 3701 20 001503 9a 4 01060 3521 00 eppbp lp|quota_restor.t 001504 0a 000330 7100 00 tra .return_code 001060 quota_restor.t: 001060 bss ,gate_entry_data_size 113 hgate quota_set,quota,qset,0,bad_dir_trap 000107 segdef quota_set 000107 quota_set: 000107 0a 001506 7100 00 tra quota_set.e 001505 a8 000000 001070 zero 0*2,quota_set.t 001506 quota_set.e: 001506 0a 000265 7020 00 tsx2 .setup 001507 0a 002556 7000 00 tsx0 .set_dir_trap 001510 aa 000000 6340 07 ldi =0,dl 001511 4a 4 02356 3521 20 short_call quota$qset(ap|0) 001512 aa 7 00036 6701 20 001513 aa 6 00030 3701 20 001514 9a 4 01070 3521 00 eppbp lp|quota_set.t 001515 0a 000330 7100 00 tra .return_code 001070 quota_set.t: 001070 bss ,gate_entry_data_size 114 hgate rc_force_unlock,reconfig,rc_force_unlock,0 000110 segdef rc_force_unlock 000110 rc_force_unlock: 000110 0a 001517 7100 00 tra rc_force_unlock.e 001516 a8 000000 001100 zero 0*2,rc_force_unlock.t 001517 rc_force_unlock.e: 001517 0a 000265 7020 00 tsx2 .setup 001520 aa 000000 6340 07 ldi =0,dl 001521 4a 4 02360 3521 20 short_call reconfig$rc_force_unlock(ap|0) 001522 aa 7 00036 6701 20 001523 aa 6 00030 3701 20 001524 9a 4 01100 3521 00 eppbp lp|rc_force_unlock.t 001525 0a 000330 7100 00 tra .return_code 001100 rc_force_unlock.t: 001100 bss ,gate_entry_data_size 115 hgate rc_unlock,reconfig,rc_unlock,0 000111 segdef rc_unlock 000111 rc_unlock: 000111 0a 001527 7100 00 tra rc_unlock.e 001526 a8 000000 001110 zero 0*2,rc_unlock.t 001527 rc_unlock.e: 001527 0a 000265 7020 00 tsx2 .setup 001530 aa 000000 6340 07 ldi =0,dl 001531 4a 4 02362 3521 20 short_call reconfig$rc_unlock(ap|0) 001532 aa 7 00036 6701 20 001533 aa 6 00030 3701 20 001534 9a 4 01110 3521 00 eppbp lp|rc_unlock.t 001535 0a 000330 7100 00 tra .return_code 001110 rc_unlock.t: 001110 bss ,gate_entry_data_size 116 hgate read_partition,partition_io,priv_read,6 000112 segdef read_partition 000112 read_partition: 000112 0a 001537 7100 00 tra read_partition.e 001536 a8 000014 001120 zero 6*2,read_partition.t 001537 read_partition.e: 001537 0a 000265 7020 00 tsx2 .setup 001540 aa 000000 6340 07 ldi =0,dl 001541 4a 4 02364 3521 20 short_call partition_io$priv_read(ap|0) 001542 aa 7 00036 6701 20 001543 aa 6 00030 3701 20 001544 9a 4 01120 3521 00 eppbp lp|read_partition.t 001545 0a 000330 7100 00 tra .return_code 001120 read_partition.t: 001120 bss ,gate_entry_data_size 117 hgate reconfig_info,reconfig,reconfig_info,2 000113 segdef reconfig_info 000113 reconfig_info: 000113 0a 001547 7100 00 tra reconfig_info.e 001546 a8 000004 001130 zero 2*2,reconfig_info.t 001547 reconfig_info.e: 001547 0a 000265 7020 00 tsx2 .setup 001550 aa 000000 6340 07 ldi =0,dl 001551 4a 4 02366 3521 20 short_call reconfig$reconfig_info(ap|0) 001552 aa 7 00036 6701 20 001553 aa 6 00030 3701 20 001554 9a 4 01130 3521 00 eppbp lp|reconfig_info.t 001555 0a 000330 7100 00 tra .return_code 001130 reconfig_info.t: 001130 bss ,gate_entry_data_size 118 hgate replace_acl,level_0_,replace_acl,6,bad_dir_trap 000114 segdef replace_acl 000114 replace_acl: 000114 0a 001557 7100 00 tra replace_acl.e 001556 a8 000014 001140 zero 6*2,replace_acl.t 001557 replace_acl.e: 001557 0a 000265 7020 00 tsx2 .setup 001560 0a 002556 7000 00 tsx0 .set_dir_trap 001561 aa 000000 6340 07 ldi =0,dl 001562 4a 4 02370 3521 20 short_call level_0_$replace_acl(ap|0) 001563 aa 7 00036 6701 20 001564 aa 6 00030 3701 20 001565 9a 4 01140 3521 00 eppbp lp|replace_acl.t 001566 0a 000330 7100 00 tra .return_code 001140 replace_acl.t: 001140 bss ,gate_entry_data_size 119 hgate replace_dir_acl,level_0_,replace_dir_acl,6,bad_dir_trap 000115 segdef replace_dir_acl 000115 replace_dir_acl: 000115 0a 001570 7100 00 tra replace_dir_acl.e 001567 a8 000014 001150 zero 6*2,replace_dir_acl.t 001570 replace_dir_acl.e: 001570 0a 000265 7020 00 tsx2 .setup 001571 0a 002556 7000 00 tsx0 .set_dir_trap 001572 aa 000000 6340 07 ldi =0,dl 001573 4a 4 02372 3521 20 short_call level_0_$replace_dir_acl(ap|0) 001574 aa 7 00036 6701 20 001575 aa 6 00030 3701 20 001576 9a 4 01150 3521 00 eppbp lp|replace_dir_acl.t 001577 0a 000330 7100 00 tra .return_code 001150 replace_dir_acl.t: 001150 bss ,gate_entry_data_size 120 hgate restore_quota,quota_util,restore_quota,0 000116 segdef restore_quota 000116 restore_quota: 000116 0a 001601 7100 00 tra restore_quota.e 001600 a8 000000 001160 zero 0*2,restore_quota.t 001601 restore_quota.e: 001601 0a 000265 7020 00 tsx2 .setup 001602 aa 000000 6340 07 ldi =0,dl 001603 4a 4 02374 3521 20 short_call quota_util$restore_quota(ap|0) 001604 aa 7 00036 6701 20 001605 aa 6 00030 3701 20 001606 9a 4 01160 3521 00 eppbp lp|restore_quota.t 001607 0a 000330 7100 00 tra .return_code 001160 restore_quota.t: 001160 bss ,gate_entry_data_size 121 hgate ring_0_patch,ring_0_peek,patch,0 000117 segdef ring_0_patch 000117 ring_0_patch: 000117 0a 001611 7100 00 tra ring_0_patch.e 001610 a8 000000 001170 zero 0*2,ring_0_patch.t 001611 ring_0_patch.e: 001611 0a 000265 7020 00 tsx2 .setup 001612 aa 000000 6340 07 ldi =0,dl 001613 4a 4 02376 3521 20 short_call ring_0_peek$patch(ap|0) 001614 aa 7 00036 6701 20 001615 aa 6 00030 3701 20 001616 9a 4 01170 3521 00 eppbp lp|ring_0_patch.t 001617 0a 000330 7100 00 tra .return_code 001170 ring_0_patch.t: 001170 bss ,gate_entry_data_size 122 hgate salv_directory,salv_directory,salv_directory,5 000120 segdef salv_directory 000120 salv_directory: 000120 0a 001621 7100 00 tra salv_directory.e 001620 a8 000012 001200 zero 5*2,salv_directory.t 001621 salv_directory.e: 001621 0a 000265 7020 00 tsx2 .setup 001622 aa 000000 6340 07 ldi =0,dl 001623 4a 4 02400 3521 20 short_call salv_directory$salv_directory(ap|0) 001624 aa 7 00036 6701 20 001625 aa 6 00030 3701 20 001626 9a 4 01200 3521 00 eppbp lp|salv_directory.t 001627 0a 000330 7100 00 tra .return_code 001200 salv_directory.t: 001200 bss ,gate_entry_data_size 123 hgate scavenge_volume,scavenger,scavenger,5 000121 segdef scavenge_volume 000121 scavenge_volume: 000121 0a 001631 7100 00 tra scavenge_volume.e 001630 a8 000012 001210 zero 5*2,scavenge_volume.t 001631 scavenge_volume.e: 001631 0a 000265 7020 00 tsx2 .setup 001632 aa 000000 6340 07 ldi =0,dl 001633 4a 4 02402 3521 20 short_call scavenger$scavenger(ap|0) 001634 aa 7 00036 6701 20 001635 aa 6 00030 3701 20 001636 9a 4 01210 3521 00 eppbp lp|scavenge_volume.t 001637 0a 000330 7100 00 tra .return_code 001210 scavenge_volume.t: 001210 bss ,gate_entry_data_size 124 hgate set_auth,set,auth,0,bad_dir_trap 000122 segdef set_auth 000122 set_auth: 000122 0a 001641 7100 00 tra set_auth.e 001640 a8 000000 001220 zero 0*2,set_auth.t 001641 set_auth.e: 001641 0a 000265 7020 00 tsx2 .setup 001642 0a 002556 7000 00 tsx0 .set_dir_trap 001643 aa 000000 6340 07 ldi =0,dl 001644 4a 4 02404 3521 20 short_call set$auth(ap|0) 001645 aa 7 00036 6701 20 001646 aa 6 00030 3701 20 001647 9a 4 01220 3521 00 eppbp lp|set_auth.t 001650 0a 000330 7100 00 tra .return_code 001220 set_auth.t: 001220 bss ,gate_entry_data_size 125 hgate set_backup_dump_time,set,backup_dump_time,4,bad_dir_trap 000123 segdef set_backup_dump_time 000123 set_backup_dump_time: 000123 0a 001652 7100 00 tra set_backup_dump_time.e 001651 a8 000010 001230 zero 4*2,set_backup_dump_time.t 001652 set_backup_dump_time.e: 001652 0a 000265 7020 00 tsx2 .setup 001653 0a 002556 7000 00 tsx0 .set_dir_trap 001654 aa 000000 6340 07 ldi =0,dl 001655 4a 4 02406 3521 20 short_call set$backup_dump_time(ap|0) 001656 aa 7 00036 6701 20 001657 aa 6 00030 3701 20 001660 9a 4 01230 3521 00 eppbp lp|set_backup_dump_time.t 001661 0a 000330 7100 00 tra .return_code 001230 set_backup_dump_time.t: 001230 bss ,gate_entry_data_size 126 hgate set_backup_times,set,backup_times,4,bad_dir_trap 000124 segdef set_backup_times 000124 set_backup_times: 000124 0a 001663 7100 00 tra set_backup_times.e 001662 a8 000010 001240 zero 4*2,set_backup_times.t 001663 set_backup_times.e: 001663 0a 000265 7020 00 tsx2 .setup 001664 0a 002556 7000 00 tsx0 .set_dir_trap 001665 aa 000000 6340 07 ldi =0,dl 001666 4a 4 02410 3521 20 short_call set$backup_times(ap|0) 001667 aa 7 00036 6701 20 001670 aa 6 00030 3701 20 001671 9a 4 01240 3521 00 eppbp lp|set_backup_times.t 001672 0a 000330 7100 00 tra .return_code 001240 set_backup_times.t: 001240 bss ,gate_entry_data_size 127 hgate set_bc_auth,set,bc_auth_path,4,bad_dir_trap 000125 segdef set_bc_auth 000125 set_bc_auth: 000125 0a 001674 7100 00 tra set_bc_auth.e 001673 a8 000010 001250 zero 4*2,set_bc_auth.t 001674 set_bc_auth.e: 001674 0a 000265 7020 00 tsx2 .setup 001675 0a 002556 7000 00 tsx0 .set_dir_trap 001676 aa 000000 6340 07 ldi =0,dl 001677 4a 4 02412 3521 20 short_call set$bc_auth_path(ap|0) 001700 aa 7 00036 6701 20 001701 aa 6 00030 3701 20 001702 9a 4 01250 3521 00 eppbp lp|set_bc_auth.t 001703 0a 000330 7100 00 tra .return_code 001250 set_bc_auth.t: 001250 bss ,gate_entry_data_size 128 hgate set_bce_command,flagbox_mgr,set_bce_command,1,bad_dir_trap 000126 segdef set_bce_command 000126 set_bce_command: 000126 0a 001705 7100 00 tra set_bce_command.e 001704 a8 000002 001260 zero 1*2,set_bce_command.t 001705 set_bce_command.e: 001705 0a 000265 7020 00 tsx2 .setup 001706 0a 002556 7000 00 tsx0 .set_dir_trap 001707 aa 000000 6340 07 ldi =0,dl 001710 4a 4 02414 3521 20 short_call flagbox_mgr$set_bce_command(ap|0) 001711 aa 7 00036 6701 20 001712 aa 6 00030 3701 20 001713 9a 4 01260 3521 00 eppbp lp|set_bce_command.t 001714 0a 000330 7100 00 tra .return_code 001260 set_bce_command.t: 001260 bss ,gate_entry_data_size 129 hgate set_cpu_monitor,tc_util,set_cpu_monitor,3 000127 segdef set_cpu_monitor 000127 set_cpu_monitor: 000127 0a 001716 7100 00 tra set_cpu_monitor.e 001715 a8 000006 001270 zero 3*2,set_cpu_monitor.t 001716 set_cpu_monitor.e: 001716 0a 000265 7020 00 tsx2 .setup 001717 aa 000000 6340 07 ldi =0,dl 001720 4a 4 02416 3521 20 short_call tc_util$set_cpu_monitor(ap|0) 001721 aa 7 00036 6701 20 001722 aa 6 00030 3701 20 001723 9a 4 01270 3521 00 eppbp lp|set_cpu_monitor.t 001724 0a 000330 7100 00 tra .return_code 001270 set_cpu_monitor.t: 001270 bss ,gate_entry_data_size 130 hgate set_dir_ring_brackets,level_0_,set_dir_ring_brackets,4,bad_dir_trap 000130 segdef set_dir_ring_brackets 000130 set_dir_ring_brackets: 000130 0a 001726 7100 00 tra set_dir_ring_brackets.e 001725 a8 000010 001300 zero 4*2,set_dir_ring_brackets.t 001726 set_dir_ring_brackets.e: 001726 0a 000265 7020 00 tsx2 .setup 001727 0a 002556 7000 00 tsx0 .set_dir_trap 001730 aa 000000 6340 07 ldi =0,dl 001731 4a 4 02420 3521 20 short_call level_0_$set_dir_ring_brackets(ap|0) 001732 aa 7 00036 6701 20 001733 aa 6 00030 3701 20 001734 9a 4 01300 3521 00 eppbp lp|set_dir_ring_brackets.t 001735 0a 000330 7100 00 tra .return_code 001300 set_dir_ring_brackets.t: 001300 bss ,gate_entry_data_size 131 hgate set_fdump_num,copy_fdump,set_erf_no,2 000131 segdef set_fdump_num 000131 set_fdump_num: 000131 0a 001737 7100 00 tra set_fdump_num.e 001736 a8 000004 001310 zero 2*2,set_fdump_num.t 001737 set_fdump_num.e: 001737 0a 000265 7020 00 tsx2 .setup 001740 aa 000000 6340 07 ldi =0,dl 001741 4a 4 02422 3521 20 short_call copy_fdump$set_erf_no(ap|0) 001742 aa 7 00036 6701 20 001743 aa 6 00030 3701 20 001744 9a 4 01310 3521 00 eppbp lp|set_fdump_num.t 001745 0a 000330 7100 00 tra .return_code 001310 set_fdump_num.t: 001310 bss ,gate_entry_data_size 132 hgate set_flagbox,flagbox_mgr,set,2,bad_dir_trap 000132 segdef set_flagbox 000132 set_flagbox: 000132 0a 001747 7100 00 tra set_flagbox.e 001746 a8 000004 001320 zero 2*2,set_flagbox.t 001747 set_flagbox.e: 001747 0a 000265 7020 00 tsx2 .setup 001750 0a 002556 7000 00 tsx0 .set_dir_trap 001751 aa 000000 6340 07 ldi =0,dl 001752 4a 4 02424 3521 20 short_call flagbox_mgr$set(ap|0) 001753 aa 7 00036 6701 20 001754 aa 6 00030 3701 20 001755 9a 4 01320 3521 00 eppbp lp|set_flagbox.t 001756 0a 000330 7100 00 tra .return_code 001320 set_flagbox.t: 001320 bss ,gate_entry_data_size 133 hgate set_for_reloader,set,set_for_reloader,4,bad_dir_trap 000133 segdef set_for_reloader 000133 set_for_reloader: 000133 0a 001760 7100 00 tra set_for_reloader.e 001757 a8 000010 001330 zero 4*2,set_for_reloader.t 001760 set_for_reloader.e: 001760 0a 000265 7020 00 tsx2 .setup 001761 0a 002556 7000 00 tsx0 .set_dir_trap 001762 aa 000000 6340 07 ldi =0,dl 001763 4a 4 02426 3521 20 short_call set$set_for_reloader(ap|0) 001764 aa 7 00036 6701 20 001765 aa 6 00030 3701 20 001766 9a 4 01330 3521 00 eppbp lp|set_for_reloader.t 001767 0a 000330 7100 00 tra .return_code 001330 set_for_reloader.t: 001330 bss ,gate_entry_data_size 134 hgate set_kst_attributes,set_kst_attributes,highly_privileged,3 000134 segdef set_kst_attributes 000134 set_kst_attributes: 000134 0a 001771 7100 00 tra set_kst_attributes.e 001770 a8 000006 001340 zero 3*2,set_kst_attributes.t 001771 set_kst_attributes.e: 001771 0a 000265 7020 00 tsx2 .setup 001772 aa 000000 6340 07 ldi =0,dl 001773 4a 4 02430 3521 20 short_call set_kst_attributes$highly_privileged(ap|0) 001774 aa 7 00036 6701 20 001775 aa 6 00030 3701 20 001776 9a 4 01340 3521 00 eppbp lp|set_kst_attributes.t 001777 0a 000330 7100 00 tra .return_code 001340 set_kst_attributes.t: 001340 bss ,gate_entry_data_size 135 hgate set_mask_ring,proc_info,set_mask_ring,0 000135 segdef set_mask_ring 000135 set_mask_ring: 000135 0a 002001 7100 00 tra set_mask_ring.e 002000 a8 000000 001350 zero 0*2,set_mask_ring.t 002001 set_mask_ring.e: 002001 0a 000265 7020 00 tsx2 .setup 002002 aa 000000 6340 07 ldi =0,dl 002003 4a 4 02432 3521 20 short_call proc_info$set_mask_ring(ap|0) 002004 aa 7 00036 6701 20 002005 aa 6 00030 3701 20 002006 9a 4 01350 3521 00 eppbp lp|set_mask_ring.t 002007 0a 000330 7100 00 tra .return_code 001350 set_mask_ring.t: 001350 bss ,gate_entry_data_size 136 hgate set_mcm_channel_trace,priv_mcs_trace,set_channel_trace,3 000136 segdef set_mcm_channel_trace 000136 set_mcm_channel_trace: 000136 0a 002011 7100 00 tra set_mcm_channel_trace.e 002010 a8 000006 001360 zero 3*2,set_mcm_channel_trace.t 002011 set_mcm_channel_trace.e: 002011 0a 000265 7020 00 tsx2 .setup 002012 aa 000000 6340 07 ldi =0,dl 002013 4a 4 02434 3521 20 short_call priv_mcs_trace$set_channel_trace(ap|0) 002014 aa 7 00036 6701 20 002015 aa 6 00030 3701 20 002016 9a 4 01360 3521 00 eppbp lp|set_mcm_channel_trace.t 002017 0a 000330 7100 00 tra .return_code 001360 set_mcm_channel_trace.t: 001360 bss ,gate_entry_data_size 137 hgate set_mcm_global_trace,priv_mcs_trace,set_global_trace,2 000137 segdef set_mcm_global_trace 000137 set_mcm_global_trace: 000137 0a 002021 7100 00 tra set_mcm_global_trace.e 002020 a8 000004 001370 zero 2*2,set_mcm_global_trace.t 002021 set_mcm_global_trace.e: 002021 0a 000265 7020 00 tsx2 .setup 002022 aa 000000 6340 07 ldi =0,dl 002023 4a 4 02436 3521 20 short_call priv_mcs_trace$set_global_trace(ap|0) 002024 aa 7 00036 6701 20 002025 aa 6 00030 3701 20 002026 9a 4 01370 3521 00 eppbp lp|set_mcm_global_trace.t 002027 0a 000330 7100 00 tra .return_code 001370 set_mcm_global_trace.t: 001370 bss ,gate_entry_data_size 138 hgate set_mcm_trace_table_size,priv_mcs_trace,set_trace_table_size,2 000140 segdef set_mcm_trace_table_size 000140 set_mcm_trace_table_size: 000140 0a 002031 7100 00 tra set_mcm_trace_table_size.e 002030 a8 000004 001400 zero 2*2,set_mcm_trace_table_size.t 002031 set_mcm_trace_table_size.e: 002031 0a 000265 7020 00 tsx2 .setup 002032 aa 000000 6340 07 ldi =0,dl 002033 4a 4 02440 3521 20 short_call priv_mcs_trace$set_trace_table_size(ap|0) 002034 aa 7 00036 6701 20 002035 aa 6 00030 3701 20 002036 9a 4 01400 3521 00 eppbp lp|set_mcm_trace_table_size.t 002037 0a 000330 7100 00 tra .return_code 001400 set_mcm_trace_table_size.t: 001400 bss ,gate_entry_data_size 139 hgate set_mos_polling_time,mos_memory_check,set_poll_time,1 000141 segdef set_mos_polling_time 000141 set_mos_polling_time: 000141 0a 002041 7100 00 tra set_mos_polling_time.e 002040 a8 000002 001410 zero 1*2,set_mos_polling_time.t 002041 set_mos_polling_time.e: 002041 0a 000265 7020 00 tsx2 .setup 002042 aa 000000 6340 07 ldi =0,dl 002043 4a 4 02442 3521 20 short_call mos_memory_check$set_poll_time(ap|0) 002044 aa 7 00036 6701 20 002045 aa 6 00030 3701 20 002046 9a 4 01410 3521 00 eppbp lp|set_mos_polling_time.t 002047 0a 000330 7100 00 tra .return_code 001410 set_mos_polling_time.t: 001410 bss ,gate_entry_data_size 140 hgate set_pit_tty_info,act_proc,set_pit_tty_info,3 000142 segdef set_pit_tty_info 000142 set_pit_tty_info: 000142 0a 002051 7100 00 tra set_pit_tty_info.e 002050 a8 000006 001420 zero 3*2,set_pit_tty_info.t 002051 set_pit_tty_info.e: 002051 0a 000265 7020 00 tsx2 .setup 002052 aa 000000 6340 07 ldi =0,dl 002053 4a 4 02444 3521 20 short_call act_proc$set_pit_tty_info(ap|0) 002054 aa 7 00036 6701 20 002055 aa 6 00030 3701 20 002056 9a 4 01420 3521 00 eppbp lp|set_pit_tty_info.t 002057 0a 000330 7100 00 tra .return_code 001420 set_pit_tty_info.t: 001420 bss ,gate_entry_data_size 141 hgate set_process_work_class,pxss,set_work_class,4 000143 segdef set_process_work_class 000143 set_process_work_class: 000143 0a 002061 7100 00 tra set_process_work_class.e 002060 a8 000010 001430 zero 4*2,set_process_work_class.t 002061 set_process_work_class.e: 002061 0a 000265 7020 00 tsx2 .setup 002062 aa 000000 6340 07 ldi =0,dl 002063 4a 4 02446 3521 20 short_call pxss$set_work_class(ap|0) 002064 aa 7 00036 6701 20 002065 aa 6 00030 3701 20 002066 9a 4 01430 3521 00 eppbp lp|set_process_work_class.t 002067 0a 000330 7100 00 tra .return_code 001430 set_process_work_class.t: 001430 bss ,gate_entry_data_size 142 hgate set_process_procs_required,set_procs_required,given_processid,3 000144 segdef set_process_procs_required 000144 set_process_procs_required: 000144 0a 002071 7100 00 tra set_process_procs_required.e 002070 a8 000006 001440 zero 3*2,set_process_procs_required.t 002071 set_process_procs_required.e: 002071 0a 000265 7020 00 tsx2 .setup 002072 aa 000000 6340 07 ldi =0,dl 002073 4a 4 02450 3521 20 short_call set_procs_required$given_processid(ap|0) 002074 aa 7 00036 6701 20 002075 aa 6 00030 3701 20 002076 9a 4 01440 3521 00 eppbp lp|set_process_procs_required.t 002077 0a 000330 7100 00 tra .return_code 001440 set_process_procs_required.t: 001440 bss ,gate_entry_data_size 143 hgate set_ring_brackets,level_0_,set_ring_brackets,4,bad_dir_trap 000145 segdef set_ring_brackets 000145 set_ring_brackets: 000145 0a 002101 7100 00 tra set_ring_brackets.e 002100 a8 000010 001450 zero 4*2,set_ring_brackets.t 002101 set_ring_brackets.e: 002101 0a 000265 7020 00 tsx2 .setup 002102 0a 002556 7000 00 tsx0 .set_dir_trap 002103 aa 000000 6340 07 ldi =0,dl 002104 4a 4 02452 3521 20 short_call level_0_$set_ring_brackets(ap|0) 002105 aa 7 00036 6701 20 002106 aa 6 00030 3701 20 002107 9a 4 01450 3521 00 eppbp lp|set_ring_brackets.t 002110 0a 000330 7100 00 tra .return_code 001450 set_ring_brackets.t: 001450 bss ,gate_entry_data_size 144 hgate set_rpv,set_sons_lvid,set_rpv,0,bad_dir_trap 000146 segdef set_rpv 000146 set_rpv: 000146 0a 002112 7100 00 tra set_rpv.e 002111 a8 000000 001460 zero 0*2,set_rpv.t 002112 set_rpv.e: 002112 0a 000265 7020 00 tsx2 .setup 002113 0a 002556 7000 00 tsx0 .set_dir_trap 002114 aa 000000 6340 07 ldi =0,dl 002115 4a 4 02454 3521 20 short_call set_sons_lvid$set_rpv(ap|0) 002116 aa 7 00036 6701 20 002117 aa 6 00030 3701 20 002120 9a 4 01460 3521 00 eppbp lp|set_rpv.t 002121 0a 000330 7100 00 tra .return_code 001460 set_rpv.t: 001460 bss ,gate_entry_data_size 145 hgate set_pdir_sons_lvid,set_sons_lvid,set_pdir_sons_lvid,4,bad_dir_trap 000147 segdef set_pdir_sons_lvid 000147 set_pdir_sons_lvid: 000147 0a 002123 7100 00 tra set_pdir_sons_lvid.e 002122 a8 000010 001470 zero 4*2,set_pdir_sons_lvid.t 002123 set_pdir_sons_lvid.e: 002123 0a 000265 7020 00 tsx2 .setup 002124 0a 002556 7000 00 tsx0 .set_dir_trap 002125 aa 000000 6340 07 ldi =0,dl 002126 4a 4 02456 3521 20 short_call set_sons_lvid$set_pdir_sons_lvid(ap|0) 002127 aa 7 00036 6701 20 002130 aa 6 00030 3701 20 002131 9a 4 01470 3521 00 eppbp lp|set_pdir_sons_lvid.t 002132 0a 000330 7100 00 tra .return_code 001470 set_pdir_sons_lvid.t: 001470 bss ,gate_entry_data_size 146 hgate set_sons_lvid,set_sons_lvid,set_sons_lvid,4,bad_dir_trap 000150 segdef set_sons_lvid 000150 set_sons_lvid: 000150 0a 002134 7100 00 tra set_sons_lvid.e 002133 a8 000010 001500 zero 4*2,set_sons_lvid.t 002134 set_sons_lvid.e: 002134 0a 000265 7020 00 tsx2 .setup 002135 0a 002556 7000 00 tsx0 .set_dir_trap 002136 aa 000000 6340 07 ldi =0,dl 002137 4a 4 02460 3521 20 short_call set_sons_lvid$set_sons_lvid(ap|0) 002140 aa 7 00036 6701 20 002141 aa 6 00030 3701 20 002142 9a 4 01500 3521 00 eppbp lp|set_sons_lvid.t 002143 0a 000330 7100 00 tra .return_code 001500 set_sons_lvid.t: 001500 bss ,gate_entry_data_size 147 hgate set_system_procs_required,set_procs_required,system_default,2 000151 segdef set_system_procs_required 000151 set_system_procs_required: 000151 0a 002145 7100 00 tra set_system_procs_required.e 002144 a8 000004 001510 zero 2*2,set_system_procs_required.t 002145 set_system_procs_required.e: 002145 0a 000265 7020 00 tsx2 .setup 002146 aa 000000 6340 07 ldi =0,dl 002147 4a 4 02462 3521 20 short_call set_procs_required$system_default(ap|0) 002150 aa 7 00036 6701 20 002151 aa 6 00030 3701 20 002152 9a 4 01510 3521 00 eppbp lp|set_system_procs_required.t 002153 0a 000330 7100 00 tra .return_code 001510 set_system_procs_required.t: 001510 bss ,gate_entry_data_size 148 hgate set_sys_audit_thresholds,set_sys_audit_thresholds_,set_sys_audit_thresholds_,7 000152 segdef set_sys_audit_thresholds 000152 set_sys_audit_thresholds: 000152 0a 002155 7100 00 tra set_sys_audit_thresholds.e 002154 a8 000016 001520 zero 7*2,set_sys_audit_thresholds.t 002155 set_sys_audit_thresholds.e: 002155 0a 000265 7020 00 tsx2 .setup 002156 aa 000000 6340 07 ldi =0,dl 002157 4a 4 02464 3521 20 short_call set_sys_audit_thresholds_$set_sys_audit_thresholds_(ap|0) 002160 aa 7 00036 6701 20 002161 aa 6 00030 3701 20 002162 9a 4 01520 3521 00 eppbp lp|set_sys_audit_thresholds.t 002163 0a 000330 7100 00 tra .return_code 001520 set_sys_audit_thresholds.t: 001520 bss ,gate_entry_data_size 149 hgate set_system_time_zone,set_system_time_zone_,set_system_time_zone_,2 000153 segdef set_system_time_zone 000153 set_system_time_zone: 000153 0a 002165 7100 00 tra set_system_time_zone.e 002164 a8 000004 001530 zero 2*2,set_system_time_zone.t 002165 set_system_time_zone.e: 002165 0a 000265 7020 00 tsx2 .setup 002166 aa 000000 6340 07 ldi =0,dl 002167 4a 4 02466 3521 20 short_call set_system_time_zone_$set_system_time_zone_(ap|0) 002170 aa 7 00036 6701 20 002171 aa 6 00030 3701 20 002172 9a 4 01530 3521 00 eppbp lp|set_system_time_zone.t 002173 0a 000330 7100 00 tra .return_code 001530 set_system_time_zone.t: 001530 bss ,gate_entry_data_size 150 hgate set_tuning_parameter,hc_tune,set,6 000154 segdef set_tuning_parameter 000154 set_tuning_parameter: 000154 0a 002175 7100 00 tra set_tuning_parameter.e 002174 a8 000014 001540 zero 6*2,set_tuning_parameter.t 002175 set_tuning_parameter.e: 002175 0a 000265 7020 00 tsx2 .setup 002176 aa 000000 6340 07 ldi =0,dl 002177 4a 4 02470 3521 20 short_call hc_tune$set(ap|0) 002200 aa 7 00036 6701 20 002201 aa 6 00030 3701 20 002202 9a 4 01540 3521 00 eppbp lp|set_tuning_parameter.t 002203 0a 000330 7100 00 tra .return_code 001540 set_tuning_parameter.t: 001540 bss ,gate_entry_data_size 151 hgate shutdown,shutdown,shutdown,0 000155 segdef shutdown 000155 shutdown: 000155 0a 002205 7100 00 tra shutdown.e 002204 a8 000000 001550 zero 0*2,shutdown.t 002205 shutdown.e: 002205 0a 000265 7020 00 tsx2 .setup 002206 aa 000000 6340 07 ldi =0,dl 002207 4a 4 02472 3521 20 short_call shutdown$shutdown(ap|0) 002210 aa 7 00036 6701 20 002211 aa 6 00030 3701 20 002212 9a 4 01550 3521 00 eppbp lp|shutdown.t 002213 0a 000330 7100 00 tra .return_code 001550 shutdown.t: 001550 bss ,gate_entry_data_size 152 hgate shutdown_multiplexer,priv_channel_manager,shutdown,2 000156 segdef shutdown_multiplexer 000156 shutdown_multiplexer: 000156 0a 002215 7100 00 tra shutdown_multiplexer.e 002214 a8 000004 001560 zero 2*2,shutdown_multiplexer.t 002215 shutdown_multiplexer.e: 002215 0a 000265 7020 00 tsx2 .setup 002216 aa 000000 6340 07 ldi =0,dl 002217 4a 4 02474 3521 20 short_call priv_channel_manager$shutdown(ap|0) 002220 aa 7 00036 6701 20 002221 aa 6 00030 3701 20 002222 9a 4 01560 3521 00 eppbp lp|shutdown_multiplexer.t 002223 0a 000330 7100 00 tra .return_code 001560 shutdown_multiplexer.t: 001560 bss ,gate_entry_data_size 153 hgate star_,star_,star_priv,8,bad_dir_trap 000157 segdef star_ 000157 star_: 000157 0a 002225 7100 00 tra star_.e 002224 a8 000020 001570 zero 8*2,star_.t 002225 star_.e: 002225 0a 000265 7020 00 tsx2 .setup 002226 0a 002556 7000 00 tsx0 .set_dir_trap 002227 aa 000000 6340 07 ldi =0,dl 002230 4a 4 02476 3521 20 short_call star_$star_priv(ap|0) 002231 aa 7 00036 6701 20 002232 aa 6 00030 3701 20 002233 9a 4 01570 3521 00 eppbp lp|star_.t 002234 0a 000330 7100 00 tra .return_code 001570 star_.t: 001570 bss ,gate_entry_data_size 154 hgate star_list_,star_,list_priv,9,bad_dir_trap 000160 segdef star_list_ 000160 star_list_: 000160 0a 002236 7100 00 tra star_list_.e 002235 a8 000022 001600 zero 9*2,star_list_.t 002236 star_list_.e: 002236 0a 000265 7020 00 tsx2 .setup 002237 0a 002556 7000 00 tsx0 .set_dir_trap 002240 aa 000000 6340 07 ldi =0,dl 002241 4a 4 02500 3521 20 short_call star_$list_priv(ap|0) 002242 aa 7 00036 6701 20 002243 aa 6 00030 3701 20 002244 9a 4 01600 3521 00 eppbp lp|star_list_.t 002245 0a 000330 7100 00 tra .return_code 001600 star_list_.t: 001600 bss ,gate_entry_data_size 155 hgate start_multiplexer,priv_channel_manager,start,2 000161 segdef start_multiplexer 000161 start_multiplexer: 000161 0a 002247 7100 00 tra start_multiplexer.e 002246 a8 000004 001610 zero 2*2,start_multiplexer.t 002247 start_multiplexer.e: 002247 0a 000265 7020 00 tsx2 .setup 002250 aa 000000 6340 07 ldi =0,dl 002251 4a 4 02502 3521 20 short_call priv_channel_manager$start(ap|0) 002252 aa 7 00036 6701 20 002253 aa 6 00030 3701 20 002254 9a 4 01610 3521 00 eppbp lp|start_multiplexer.t 002255 0a 000330 7100 00 tra .return_code 001610 start_multiplexer.t: 001610 bss ,gate_entry_data_size 156 hgate start_process,pxss,start,0 000162 segdef start_process 000162 start_process: 000162 0a 002257 7100 00 tra start_process.e 002256 a8 000000 001620 zero 0*2,start_process.t 002257 start_process.e: 002257 0a 000265 7020 00 tsx2 .setup 002260 aa 000000 6340 07 ldi =0,dl 002261 4a 4 02504 3521 20 short_call pxss$start(ap|0) 002262 aa 7 00036 6701 20 002263 aa 6 00030 3701 20 002264 9a 4 01620 3521 00 eppbp lp|start_process.t 002265 0a 000330 7100 00 tra .return_code 001620 start_process.t: 001620 bss ,gate_entry_data_size 157 hgate stop_multiplexer,priv_channel_manager,stop,2 000163 segdef stop_multiplexer 000163 stop_multiplexer: 000163 0a 002267 7100 00 tra stop_multiplexer.e 002266 a8 000004 001630 zero 2*2,stop_multiplexer.t 002267 stop_multiplexer.e: 002267 0a 000265 7020 00 tsx2 .setup 002270 aa 000000 6340 07 ldi =0,dl 002271 4a 4 02506 3521 20 short_call priv_channel_manager$stop(ap|0) 002272 aa 7 00036 6701 20 002273 aa 6 00030 3701 20 002274 9a 4 01630 3521 00 eppbp lp|stop_multiplexer.t 002275 0a 000330 7100 00 tra .return_code 001630 stop_multiplexer.t: 001630 bss ,gate_entry_data_size 158 hgate stop_process,stop_process,stop_process,0 000164 segdef stop_process 000164 stop_process: 000164 0a 002277 7100 00 tra stop_process.e 002276 a8 000000 001640 zero 0*2,stop_process.t 002277 stop_process.e: 002277 0a 000265 7020 00 tsx2 .setup 002300 aa 000000 6340 07 ldi =0,dl 002301 4a 4 02510 3521 20 short_call stop_process$stop_process(ap|0) 002302 aa 7 00036 6701 20 002303 aa 6 00030 3701 20 002304 9a 4 01640 3521 00 eppbp lp|stop_process.t 002305 0a 000330 7100 00 tra .return_code 001640 stop_process.t: 001640 bss ,gate_entry_data_size 159 hgate stop_vacate_pv,vacate_pv,stop_vacate,3 000165 segdef stop_vacate_pv 000165 stop_vacate_pv: 000165 0a 002307 7100 00 tra stop_vacate_pv.e 002306 a8 000006 001650 zero 3*2,stop_vacate_pv.t 002307 stop_vacate_pv.e: 002307 0a 000265 7020 00 tsx2 .setup 002310 aa 000000 6340 07 ldi =0,dl 002311 4a 4 02512 3521 20 short_call vacate_pv$stop_vacate(ap|0) 002312 aa 7 00036 6701 20 002313 aa 6 00030 3701 20 002314 9a 4 01650 3521 00 eppbp lp|stop_vacate_pv.t 002315 0a 000330 7100 00 tra .return_code 001650 stop_vacate_pv.t: 001650 bss ,gate_entry_data_size 160 hgate suspend_quota,quota_util,suspend_quota,0 000166 segdef suspend_quota 000166 suspend_quota: 000166 0a 002317 7100 00 tra suspend_quota.e 002316 a8 000000 001660 zero 0*2,suspend_quota.t 002317 suspend_quota.e: 002317 0a 000265 7020 00 tsx2 .setup 002320 aa 000000 6340 07 ldi =0,dl 002321 4a 4 02514 3521 20 short_call quota_util$suspend_quota(ap|0) 002322 aa 7 00036 6701 20 002323 aa 6 00030 3701 20 002324 9a 4 01660 3521 00 eppbp lp|suspend_quota.t 002325 0a 000330 7100 00 tra .return_code 001660 suspend_quota.t: 001660 bss ,gate_entry_data_size 161 hgate syserr,syserr_real,ring1,0 000167 segdef syserr 000167 syserr: 000167 0a 002327 7100 00 tra syserr.e 002326 a8 000000 001670 zero 0*2,syserr.t 002327 syserr.e: 002327 0a 000265 7020 00 tsx2 .setup 002330 aa 000000 6340 07 ldi =0,dl 002331 4a 4 02516 3521 20 short_call syserr_real$ring1(ap|0) 002332 aa 7 00036 6701 20 002333 aa 6 00030 3701 20 002334 9a 4 01670 3521 00 eppbp lp|syserr.t 002335 0a 000330 7100 00 tra .return_code 001670 syserr.t: 001670 bss ,gate_entry_data_size 162 hgate syserr_binary,syserr_real,ring1_binary,0 000170 segdef syserr_binary 000170 syserr_binary: 000170 0a 002337 7100 00 tra syserr_binary.e 002336 a8 000000 001700 zero 0*2,syserr_binary.t 002337 syserr_binary.e: 002337 0a 000265 7020 00 tsx2 .setup 002340 aa 000000 6340 07 ldi =0,dl 002341 4a 4 02520 3521 20 short_call syserr_real$ring1_binary(ap|0) 002342 aa 7 00036 6701 20 002343 aa 6 00030 3701 20 002344 9a 4 01700 3521 00 eppbp lp|syserr_binary.t 002345 0a 000330 7100 00 tra .return_code 001700 syserr_binary.t: 001700 bss ,gate_entry_data_size 163 hgate syserr_error_code,syserr_real,ring1_error_code,0 000171 segdef syserr_error_code 000171 syserr_error_code: 000171 0a 002347 7100 00 tra syserr_error_code.e 002346 a8 000000 001710 zero 0*2,syserr_error_code.t 002347 syserr_error_code.e: 002347 0a 000265 7020 00 tsx2 .setup 002350 aa 000000 6340 07 ldi =0,dl 002351 4a 4 02522 3521 20 short_call syserr_real$ring1_error_code(ap|0) 002352 aa 7 00036 6701 20 002353 aa 6 00030 3701 20 002354 9a 4 01710 3521 00 eppbp lp|syserr_error_code.t 002355 0a 000330 7100 00 tra .return_code 001710 syserr_error_code.t: 001710 bss ,gate_entry_data_size 164 hgate terminate_channel,priv_channel_manager,terminate_channel,2 000172 segdef terminate_channel 000172 terminate_channel: 000172 0a 002357 7100 00 tra terminate_channel.e 002356 a8 000004 001720 zero 2*2,terminate_channel.t 002357 terminate_channel.e: 002357 0a 000265 7020 00 tsx2 .setup 002360 aa 000000 6340 07 ldi =0,dl 002361 4a 4 02524 3521 20 short_call priv_channel_manager$terminate_channel(ap|0) 002362 aa 7 00036 6701 20 002363 aa 6 00030 3701 20 002364 9a 4 01720 3521 00 eppbp lp|terminate_channel.t 002365 0a 000330 7100 00 tra .return_code 001720 terminate_channel.t: 001720 bss ,gate_entry_data_size 165 hgate terminate_multiplexer,priv_channel_manager,terminate_multiplexer,2 000173 segdef terminate_multiplexer 000173 terminate_multiplexer: 000173 0a 002367 7100 00 tra terminate_multiplexer.e 002366 a8 000004 001730 zero 2*2,terminate_multiplexer.t 002367 terminate_multiplexer.e: 002367 0a 000265 7020 00 tsx2 .setup 002370 aa 000000 6340 07 ldi =0,dl 002371 4a 4 02526 3521 20 short_call priv_channel_manager$terminate_multiplexer(ap|0) 002372 aa 7 00036 6701 20 002373 aa 6 00030 3701 20 002374 9a 4 01730 3521 00 eppbp lp|terminate_multiplexer.t 002375 0a 000330 7100 00 tra .return_code 001730 terminate_multiplexer.t: 001730 bss ,gate_entry_data_size 166 hgate tty_control,priv_channel_manager,hpriv_control,4 000174 segdef tty_control 000174 tty_control: 000174 0a 002377 7100 00 tra tty_control.e 002376 a8 000010 001740 zero 4*2,tty_control.t 002377 tty_control.e: 002377 0a 000265 7020 00 tsx2 .setup 002400 aa 000000 6340 07 ldi =0,dl 002401 4a 4 02530 3521 20 short_call priv_channel_manager$hpriv_control(ap|0) 002402 aa 7 00036 6701 20 002403 aa 6 00030 3701 20 002404 9a 4 01740 3521 00 eppbp lp|tty_control.t 002405 0a 000330 7100 00 tra .return_code 001740 tty_control.t: 001740 bss ,gate_entry_data_size 167 hgate tty_write_force,tty_write,tty_write_force,7 000175 segdef tty_write_force 000175 tty_write_force: 000175 0a 002407 7100 00 tra tty_write_force.e 002406 a8 000016 001750 zero 7*2,tty_write_force.t 002407 tty_write_force.e: 002407 0a 000265 7020 00 tsx2 .setup 002410 aa 000000 6340 07 ldi =0,dl 002411 4a 4 02532 3521 20 short_call tty_write$tty_write_force(ap|0) 002412 aa 7 00036 6701 20 002413 aa 6 00030 3701 20 002414 9a 4 01750 3521 00 eppbp lp|tty_write_force.t 002415 0a 000330 7100 00 tra .return_code 001750 tty_write_force.t: 001750 bss ,gate_entry_data_size 168 hgate tune_work_class,tc,tune_work_class,2 000176 segdef tune_work_class 000176 tune_work_class: 000176 0a 002417 7100 00 tra tune_work_class.e 002416 a8 000004 001760 zero 2*2,tune_work_class.t 002417 tune_work_class.e: 002417 0a 000265 7020 00 tsx2 .setup 002420 aa 000000 6340 07 ldi =0,dl 002421 4a 4 02534 3521 20 short_call tc$tune_work_class(ap|0) 002422 aa 7 00036 6701 20 002423 aa 6 00030 3701 20 002424 9a 4 01760 3521 00 eppbp lp|tune_work_class.t 002425 0a 000330 7100 00 tra .return_code 001760 tune_work_class.t: 001760 bss ,gate_entry_data_size 169 hgate unwire_fnp,fnp_util,unwire,2 000177 segdef unwire_fnp 000177 unwire_fnp: 000177 0a 002427 7100 00 tra unwire_fnp.e 002426 a8 000004 001770 zero 2*2,unwire_fnp.t 002427 unwire_fnp.e: 002427 0a 000265 7020 00 tsx2 .setup 002430 aa 000000 6340 07 ldi =0,dl 002431 4a 4 02536 3521 20 short_call fnp_util$unwire(ap|0) 002432 aa 7 00036 6701 20 002433 aa 6 00030 3701 20 002434 9a 4 01770 3521 00 eppbp lp|unwire_fnp.t 002435 0a 000330 7100 00 tra .return_code 001770 unwire_fnp.t: 001770 bss ,gate_entry_data_size 170 hgate user_wire,user_wire,user_wire_seg,5 000200 segdef user_wire 000200 user_wire: 000200 0a 002437 7100 00 tra user_wire.e 002436 a8 000012 002000 zero 5*2,user_wire.t 002437 user_wire.e: 002437 0a 000265 7020 00 tsx2 .setup 002440 aa 000000 6340 07 ldi =0,dl 002441 4a 4 02540 3521 20 short_call user_wire$user_wire_seg(ap|0) 002442 aa 7 00036 6701 20 002443 aa 6 00030 3701 20 002444 9a 4 02000 3521 00 eppbp lp|user_wire.t 002445 0a 000330 7100 00 tra .return_code 002000 user_wire.t: 002000 bss ,gate_entry_data_size 171 hgate vacate_pv,vacate_pv,vacate_pv,3 000201 segdef vacate_pv 000201 vacate_pv: 000201 0a 002447 7100 00 tra vacate_pv.e 002446 a8 000006 002010 zero 3*2,vacate_pv.t 002447 vacate_pv.e: 002447 0a 000265 7020 00 tsx2 .setup 002450 aa 000000 6340 07 ldi =0,dl 002451 4a 4 02542 3521 20 short_call vacate_pv$vacate_pv(ap|0) 002452 aa 7 00036 6701 20 002453 aa 6 00030 3701 20 002454 9a 4 02010 3521 00 eppbp lp|vacate_pv.t 002455 0a 000330 7100 00 tra .return_code 002010 vacate_pv.t: 002010 bss ,gate_entry_data_size 172 hgate wire_fnp,fnp_util,wire,5 000202 segdef wire_fnp 000202 wire_fnp: 000202 0a 002457 7100 00 tra wire_fnp.e 002456 a8 000012 002020 zero 5*2,wire_fnp.t 002457 wire_fnp.e: 002457 0a 000265 7020 00 tsx2 .setup 002460 aa 000000 6340 07 ldi =0,dl 002461 4a 4 02544 3521 20 short_call fnp_util$wire(ap|0) 002462 aa 7 00036 6701 20 002463 aa 6 00030 3701 20 002464 9a 4 02020 3521 00 eppbp lp|wire_fnp.t 002465 0a 000330 7100 00 tra .return_code 002020 wire_fnp.t: 002020 bss ,gate_entry_data_size 173 hgate write_partition,partition_io,priv_write,6 000203 segdef write_partition 000203 write_partition: 000203 0a 002467 7100 00 tra write_partition.e 002466 a8 000014 002030 zero 6*2,write_partition.t 002467 write_partition.e: 002467 0a 000265 7020 00 tsx2 .setup 002470 aa 000000 6340 07 ldi =0,dl 002471 4a 4 02546 3521 20 short_call partition_io$priv_write(ap|0) 002472 aa 7 00036 6701 20 002473 aa 6 00030 3701 20 002474 9a 4 02030 3521 00 eppbp lp|write_partition.t 002475 0a 000330 7100 00 tra .return_code 002030 write_partition.t: 002030 bss ,gate_entry_data_size 174 175 hgate new_syserr_copy_init,syserr_seg_manager,start_copying,2 000204 segdef new_syserr_copy_init 000204 new_syserr_copy_init: 000204 0a 002477 7100 00 tra new_syserr_copy_init.e 002476 a8 000004 002040 zero 2*2,new_syserr_copy_init.t 002477 new_syserr_copy_init.e: 002477 0a 000265 7020 00 tsx2 .setup 002500 aa 000000 6340 07 ldi =0,dl 002501 4a 4 02550 3521 20 short_call syserr_seg_manager$start_copying(ap|0) 002502 aa 7 00036 6701 20 002503 aa 6 00030 3701 20 002504 9a 4 02040 3521 00 eppbp lp|new_syserr_copy_init.t 002505 0a 000330 7100 00 tra .return_code 002040 new_syserr_copy_init.t: 002040 bss ,gate_entry_data_size 176 hgate new_syserr_info,syserr_seg_manager,segment_info,2 000205 segdef new_syserr_info 000205 new_syserr_info: 000205 0a 002507 7100 00 tra new_syserr_info.e 002506 a8 000004 002050 zero 2*2,new_syserr_info.t 002507 new_syserr_info.e: 002507 0a 000265 7020 00 tsx2 .setup 002510 aa 000000 6340 07 ldi =0,dl 002511 4a 4 02552 3521 20 short_call syserr_seg_manager$segment_info(ap|0) 002512 aa 7 00036 6701 20 002513 aa 6 00030 3701 20 002514 9a 4 02050 3521 00 eppbp lp|new_syserr_info.t 002515 0a 000330 7100 00 tra .return_code 002050 new_syserr_info.t: 002050 bss ,gate_entry_data_size 177 hgate new_syserr_swap_logs,syserr_seg_manager,swap_logs,1 000206 segdef new_syserr_swap_logs 000206 new_syserr_swap_logs: 000206 0a 002517 7100 00 tra new_syserr_swap_logs.e 002516 a8 000002 002060 zero 1*2,new_syserr_swap_logs.t 002517 new_syserr_swap_logs.e: 002517 0a 000265 7020 00 tsx2 .setup 002520 aa 000000 6340 07 ldi =0,dl 002521 4a 4 02554 3521 20 short_call syserr_seg_manager$swap_logs(ap|0) 002522 aa 7 00036 6701 20 002523 aa 6 00030 3701 20 002524 9a 4 02060 3521 00 eppbp lp|new_syserr_swap_logs.t 002525 0a 000330 7100 00 tra .return_code 002060 new_syserr_swap_logs.t: 002060 bss ,gate_entry_data_size 178 hgate new_syserr_recovery,syserr_seg_manager,set_recovery_flag,1 000207 segdef new_syserr_recovery 000207 new_syserr_recovery: 000207 0a 002527 7100 00 tra new_syserr_recovery.e 002526 a8 000002 002070 zero 1*2,new_syserr_recovery.t 002527 new_syserr_recovery.e: 002527 0a 000265 7020 00 tsx2 .setup 002530 aa 000000 6340 07 ldi =0,dl 002531 4a 4 02556 3521 20 short_call syserr_seg_manager$set_recovery_flag(ap|0) 002532 aa 7 00036 6701 20 002533 aa 6 00030 3701 20 002534 9a 4 02070 3521 00 eppbp lp|new_syserr_recovery.t 002535 0a 000330 7100 00 tra .return_code 002070 new_syserr_recovery.t: 002070 bss ,gate_entry_data_size 179 hgate new_syserr_reuse_log,syserr_seg_manager,reuse_empty_log,1 000210 segdef new_syserr_reuse_log 000210 new_syserr_reuse_log: 000210 0a 002537 7100 00 tra new_syserr_reuse_log.e 002536 a8 000002 002100 zero 1*2,new_syserr_reuse_log.t 002537 new_syserr_reuse_log.e: 002537 0a 000265 7020 00 tsx2 .setup 002540 aa 000000 6340 07 ldi =0,dl 002541 4a 4 02560 3521 20 short_call syserr_seg_manager$reuse_empty_log(ap|0) 002542 aa 7 00036 6701 20 002543 aa 6 00030 3701 20 002544 9a 4 02100 3521 00 eppbp lp|new_syserr_reuse_log.t 002545 0a 000330 7100 00 tra .return_code 002100 new_syserr_reuse_log.t: 002100 bss ,gate_entry_data_size 180 hgate new_syserr_verify_sequence,syserr_seg_manager,verify_sequence,3 000211 segdef new_syserr_verify_sequence 000211 new_syserr_verify_sequence: 000211 0a 002547 7100 00 tra new_syserr_verify_sequence.e 002546 a8 000006 002110 zero 3*2,new_syserr_verify_sequence.t 002547 new_syserr_verify_sequence.e: 002547 0a 000265 7020 00 tsx2 .setup 002550 aa 000000 6340 07 ldi =0,dl 002551 4a 4 02562 3521 20 short_call syserr_seg_manager$verify_sequence(ap|0) 002552 aa 7 00036 6701 20 002553 aa 6 00030 3701 20 002554 9a 4 02110 3521 00 eppbp lp|new_syserr_verify_sequence.t 002555 0a 000330 7100 00 tra .return_code 002110 new_syserr_verify_sequence.t: 002110 bss ,gate_entry_data_size 181 182 bad_dir_handler include on_unit 5-1 " 5-2 " BEGIN INCLUDE FILE --- on_unit.incl.alm 5/75 RAB 5-3 " 000000 5-4 equ on_unit.name,0 000002 5-5 equ on_unit.body,2 000004 5-6 equ on_unit.size,4 000005 5-7 equ on_unit.next,5 upper offset relative to stack FRAME 000005 5-8 equ on_unit.flags,5 lower 000006 5-9 equ on_unit.file,6 000010 5-10 equ on_unit.file_copy,8 5-11 " 5-12 " END INCLUDE FILE --- on_unit.incl.alm 5-13 " use transfer_vector 000212 .handler_entry: 000212 0a 002601 7100 00 tra .handler 000213 .handler_restart_entry: 000213 0a 002641 7100 00 tra .handler_restart_point use main 002556 .set_dir_trap: 002556 aa 6 00071 7401 00 stx0 .entryp save for restart 002557 aa 000100 1004 00 mlr (),(pr),fill(000) 002560 aa 000000 000000 desc9a 0,0 002561 aa 600056 000050 desc9a .on_unit,10*4 002562 0a 002576 3520 00 eppbp .bad_dir_name 002563 aa 6 00056 2521 00 spribp .on_unit+on_unit.name 002564 0a 000212 3520 00 eppbp .handler_entry 002565 aa 6 00060 2521 00 spribp .on_unit+on_unit.body 002566 0a 002600 7210 00 lxl1 .bad_dir_desc 002567 aa 6 00062 4411 00 sxl1 .on_unit+on_unit.size 002570 aa 6 00056 6351 00 eaa .on_unit set up on-unit for bad_dir_ 002571 aa 6 00000 1351 03 sbla sp|0,du .. make rel to sp 002572 aa 6 00036 7551 00 sta sp|stack_frame.on_unit_rel_ptrs 002573 aa 000100 2350 07 lda stack_frame.condition_bit,dl 002574 aa 6 00020 2551 00 orsa sp|stack_frame.flag_word 002575 aa 000000 7100 10 tra 0,0 string bad_dir_ 002576 .bad_dir_name: 002576 aa 142 141 144 137 aci "bad_dir_" 002577 aa 144 151 162 137 002600 .bad_dir_desc: 002600 aa 525000 000010 vfd o9/525,o27/8 002601 aa 6 00000 2131 00 .handler: epaq sp|0 verify that call came from ring 0 002602 aa 777777 3150 07 cana -1,dl check ring number in AL 002603 0a 002605 6000 00 tze *+2 002604 aa 000000 000000 zero 0 go way kid you bother me 002605 aa 000120 6270 00 push " ok, we like the call 002606 aa 7 00040 2721 20 002607 0a 000216 3700 20 epplp .my_lp,* 002610 aa 0 00000 2201 00 ldx0 ap|0 get display 002611 aa 0 00002 3521 30 eppbp ap|2,0* 002612 aa 2 00020 2351 00 lda bp|stack_frame.prev_sp 002613 aa 700000 3150 07 cana =o700000,dl from another ring? 002614 0a 002636 6000 00 tze .continue_signal if not, back to signal_ 002615 aa 0 00002 3501 20 eppap ap|2,* Get mcptr 002616 aa 0 00000 3501 20 eppap ap|0,* .. 002617 aa 2 00076 2501 00 spriap bp|.mcptr .. save in gate frame 002620 aa 6 00054 2521 00 spribp .label_variable+2 002621 0a 000213 3520 00 eppbp .handler_restart_entry 002622 aa 6 00052 2521 00 spribp .label_variable 002623 aa 6 00052 3521 00 eppbp .label_variable 002624 aa 6 00060 2521 00 spribp .unwinder_arglist+2 002625 aa 004000 4310 07 fld =1b24,dl 002626 aa 6 00056 7571 00 staq .unwinder_arglist 002627 aa 6 00000 2541 00 call unwinder_$unwinder_(.unwinder_arglist) 002630 aa 6 00056 3501 00 002631 4a 4 02122 3521 20 002632 aa 6 00040 7531 00 002633 aa 7 00036 6701 20 002634 aa 6 00000 1731 00 002635 aa 6 00040 0731 00 002636 .continue_signal: 002636 aa 400000 2350 03 lda =o400000,du "1"b 002637 aa 0 00012 7551 20 sta ap|10,* set continue bit 002640 aa 7 00042 7101 20 return 002641 .handler_restart_point: 002641 aa 6 00000 2131 00 epaq sp|0 check that call came from ring 0 002642 aa 777777 3150 07 cana -1,dl 002643 0a 002645 6000 00 tze *+2 002644 aa 000001 000000 zero 1 002645 0a 000216 3700 20 epplp .my_lp,* 002646 aa 000101 3350 07 lca stack_frame.condition_bit+1,dl Vanish on-unit 002647 aa 6 00020 3551 00 ansa sp|stack_frame.flag_word 002650 aa 6 00076 3521 00 eppbp .mcptr 002651 aa 6 00074 2521 00 spribp .vfl_arglist+2 002652 aa 004000 4310 07 fld =1b24,dl 002653 aa 6 00072 7571 00 staq .vfl_arglist 002654 4a 4 02564 3521 20 short_call verify_lock$verify_lock_bad_dir(.vfl_arglist) 002655 aa 7 00036 6701 20 002656 aa 6 00030 3701 20 002657 aa 6 00071 2201 00 ldx0 .entryp 002660 aa 6 00032 3501 20 eppap sp|stack_frame.arg_ptr,* 002661 aa 000000 7100 10 tra 0,0 retry the call 183 184 end NO LITERALS NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 002662 5a 000003 000000 002663 5a 001770 600000 002664 aa 000000 000000 002665 55 000010 000002 002666 5a 000002 400003 002667 55 000006 000010 002670 aa 006 150 160 150 002671 aa 143 163 137 000 002672 55 000022 000003 002673 0a 000211 400000 002674 55 000013 000003 002675 aa 032 156 145 167 new_syserr_verify_sequence 002676 aa 137 163 171 163 002677 aa 145 162 162 137 002700 aa 166 145 162 151 002701 aa 146 171 137 163 002702 aa 145 161 165 145 002703 aa 156 143 145 000 002704 55 000033 000010 002705 0a 000210 400000 002706 55 000025 000003 002707 aa 024 156 145 167 new_syserr_reuse_log 002710 aa 137 163 171 163 002711 aa 145 162 162 137 002712 aa 162 145 165 163 002713 aa 145 137 154 157 002714 aa 147 000 000 000 002715 55 000043 000022 002716 0a 000207 400000 002717 55 000036 000003 002720 aa 023 156 145 167 new_syserr_recovery 002721 aa 137 163 171 163 002722 aa 145 162 162 137 002723 aa 162 145 143 157 002724 aa 166 145 162 171 002725 55 000054 000033 002726 0a 000206 400000 002727 55 000046 000003 002730 aa 024 156 145 167 new_syserr_swap_logs 002731 aa 137 163 171 163 002732 aa 145 162 162 137 002733 aa 163 167 141 160 002734 aa 137 154 157 147 002735 aa 163 000 000 000 002736 55 000063 000043 002737 0a 000205 400000 002740 55 000057 000003 002741 aa 017 156 145 167 new_syserr_info 002742 aa 137 163 171 163 002743 aa 145 162 162 137 002744 aa 151 156 146 157 002745 55 000074 000054 002746 0a 000204 400000 002747 55 000066 000003 002750 aa 024 156 145 167 new_syserr_copy_init 002751 aa 137 163 171 163 002752 aa 145 162 162 137 002753 aa 143 157 160 171 002754 aa 137 151 156 151 002755 aa 164 000 000 000 002756 55 000103 000063 002757 0a 000203 400000 002760 55 000077 000003 002761 aa 017 167 162 151 write_partition 002762 aa 164 145 137 160 002763 aa 141 162 164 151 002764 aa 164 151 157 156 002765 55 000111 000074 002766 0a 000202 400000 002767 55 000106 000003 002770 aa 010 167 151 162 wire_fnp 002771 aa 145 137 146 156 002772 aa 160 000 000 000 002773 55 000117 000103 002774 0a 000201 400000 002775 55 000114 000003 002776 aa 011 166 141 143 vacate_pv 002777 aa 141 164 145 137 003000 aa 160 166 000 000 003001 55 000125 000111 003002 0a 000200 400000 003003 55 000122 000003 003004 aa 011 165 163 145 user_wire 003005 aa 162 137 167 151 003006 aa 162 145 000 000 003007 55 000133 000117 003010 0a 000177 400000 003011 55 000130 000003 003012 aa 012 165 156 167 unwire_fnp 003013 aa 151 162 145 137 003014 aa 146 156 160 000 003015 55 000142 000125 003016 0a 000176 400000 003017 55 000136 000003 003020 aa 017 164 165 156 tune_work_class 003021 aa 145 137 167 157 003022 aa 162 153 137 143 003023 aa 154 141 163 163 003024 55 000151 000133 003025 0a 000175 400000 003026 55 000145 000003 003027 aa 017 164 164 171 tty_write_force 003030 aa 137 167 162 151 003031 aa 164 145 137 146 003032 aa 157 162 143 145 003033 55 000157 000142 003034 0a 000174 400000 003035 55 000154 000003 003036 aa 013 164 164 171 tty_control 003037 aa 137 143 157 156 003040 aa 164 162 157 154 003041 55 000170 000151 003042 0a 000173 400000 003043 55 000162 000003 003044 aa 025 164 145 162 terminate_multiplexer 003045 aa 155 151 156 141 003046 aa 164 145 137 155 003047 aa 165 154 164 151 003050 aa 160 154 145 170 003051 aa 145 162 000 000 003052 55 000200 000157 003053 0a 000172 400000 003054 55 000173 000003 003055 aa 021 164 145 162 terminate_channel 003056 aa 155 151 156 141 003057 aa 164 145 137 143 003060 aa 150 141 156 156 003061 aa 145 154 000 000 003062 55 000210 000170 003063 0a 000171 400000 003064 55 000203 000003 003065 aa 021 163 171 163 syserr_error_code 003066 aa 145 162 162 137 003067 aa 145 162 162 157 003070 aa 162 137 143 157 003071 aa 144 145 000 000 003072 55 000217 000200 003073 0a 000170 400000 003074 55 000213 000003 003075 aa 015 163 171 163 syserr_binary 003076 aa 145 162 162 137 003077 aa 142 151 156 141 003100 aa 162 171 000 000 003101 55 000224 000210 003102 0a 000167 400000 003103 55 000222 000003 003104 aa 006 163 171 163 syserr 003105 aa 145 162 162 000 003106 55 000233 000217 003107 0a 000166 400000 003110 55 000227 000003 003111 aa 015 163 165 163 suspend_quota 003112 aa 160 145 156 144 003113 aa 137 161 165 157 003114 aa 164 141 000 000 003115 55 000242 000224 003116 0a 000165 400000 003117 55 000236 000003 003120 aa 016 163 164 157 stop_vacate_pv 003121 aa 160 137 166 141 003122 aa 143 141 164 145 003123 aa 137 160 166 000 003124 55 000251 000233 003125 0a 000164 400000 003126 55 000245 000003 003127 aa 014 163 164 157 stop_process 003130 aa 160 137 160 162 003131 aa 157 143 145 163 003132 aa 163 000 000 000 003133 55 000261 000242 003134 0a 000163 400000 003135 55 000254 000003 003136 aa 020 163 164 157 stop_multiplexer 003137 aa 160 137 155 165 003140 aa 154 164 151 160 003141 aa 154 145 170 145 003142 aa 162 000 000 000 003143 55 000270 000251 003144 0a 000162 400000 003145 55 000264 000003 003146 aa 015 163 164 141 start_process 003147 aa 162 164 137 160 003150 aa 162 157 143 145 003151 aa 163 163 000 000 003152 55 000300 000261 003153 0a 000161 400000 003154 55 000273 000003 003155 aa 021 163 164 141 start_multiplexer 003156 aa 162 164 137 155 003157 aa 165 154 164 151 003160 aa 160 154 145 170 003161 aa 145 162 000 000 003162 55 000306 000270 003163 0a 000160 400000 003164 55 000303 000003 003165 aa 012 163 164 141 star_list_ 003166 aa 162 137 154 151 003167 aa 163 164 137 000 003170 55 000313 000300 003171 0a 000157 400000 003172 55 000311 000003 003173 aa 005 163 164 141 star_ 003174 aa 162 137 000 000 003175 55 000324 000306 003176 0a 000156 400000 003177 55 000316 000003 003200 aa 024 163 150 165 shutdown_multiplexer 003201 aa 164 144 157 167 003202 aa 156 137 155 165 003203 aa 154 164 151 160 003204 aa 154 145 170 145 003205 aa 162 000 000 000 003206 55 000332 000313 003207 0a 000155 400000 003210 55 000327 000003 003211 aa 010 163 150 165 shutdown 003212 aa 164 144 157 167 003213 aa 156 000 000 000 003214 55 000343 000324 003215 0a 000154 400000 003216 55 000335 000003 003217 aa 024 163 145 164 set_tuning_parameter 003220 aa 137 164 165 156 003221 aa 151 156 147 137 003222 aa 160 141 162 141 003223 aa 155 145 164 145 003224 aa 162 000 000 000 003225 55 000354 000332 003226 0a 000153 400000 003227 55 000346 000003 003230 aa 024 163 145 164 set_system_time_zone 003231 aa 137 163 171 163 003232 aa 164 145 155 137 003233 aa 164 151 155 145 003234 aa 137 172 157 156 003235 aa 145 000 000 000 003236 55 000366 000343 003237 0a 000152 400000 003240 55 000357 000003 003241 aa 030 163 145 164 set_sys_audit_thresholds 003242 aa 137 163 171 163 003243 aa 137 141 165 144 003244 aa 151 164 137 164 003245 aa 150 162 145 163 003246 aa 150 157 154 144 003247 aa 163 000 000 000 003250 55 000400 000354 003251 0a 000151 400000 003252 55 000371 000003 003253 aa 031 163 145 164 set_system_procs_required 003254 aa 137 163 171 163 003255 aa 164 145 155 137 003256 aa 160 162 157 143 003257 aa 163 137 162 145 003260 aa 161 165 151 162 003261 aa 145 144 000 000 003262 55 000407 000366 003263 0a 000150 400000 003264 55 000403 000003 003265 aa 015 163 145 164 set_sons_lvid 003266 aa 137 163 157 156 003267 aa 163 137 154 166 003270 aa 151 144 000 000 003271 55 000417 000400 003272 0a 000147 400000 003273 55 000412 000003 003274 aa 022 163 145 164 set_pdir_sons_lvid 003275 aa 137 160 144 151 003276 aa 162 137 163 157 003277 aa 156 163 137 154 003300 aa 166 151 144 000 003301 55 000424 000407 003302 0a 000146 400000 003303 55 000422 000003 003304 aa 007 163 145 164 set_rpv 003305 aa 137 162 160 166 003306 55 000434 000417 003307 0a 000145 400000 003310 55 000427 000003 003311 aa 021 163 145 164 set_ring_brackets 003312 aa 137 162 151 156 003313 aa 147 137 142 162 003314 aa 141 143 153 145 003315 aa 164 163 000 000 003316 55 000446 000424 003317 0a 000144 400000 003320 55 000437 000003 003321 aa 032 163 145 164 set_process_procs_required 003322 aa 137 160 162 157 003323 aa 143 145 163 163 003324 aa 137 160 162 157 003325 aa 143 163 137 162 003326 aa 145 161 165 151 003327 aa 162 145 144 000 003330 55 000457 000434 003331 0a 000143 400000 003332 55 000451 000003 003333 aa 026 163 145 164 set_process_work_class 003334 aa 137 160 162 157 003335 aa 143 145 163 163 003336 aa 137 167 157 162 003337 aa 153 137 143 154 003340 aa 141 163 163 000 003341 55 000467 000446 003342 0a 000142 400000 003343 55 000462 000003 003344 aa 020 163 145 164 set_pit_tty_info 003345 aa 137 160 151 164 003346 aa 137 164 164 171 003347 aa 137 151 156 146 003350 aa 157 000 000 000 003351 55 000500 000457 003352 0a 000141 400000 003353 55 000472 000003 003354 aa 024 163 145 164 set_mos_polling_time 003355 aa 137 155 157 163 003356 aa 137 160 157 154 003357 aa 154 151 156 147 003360 aa 137 164 151 155 003361 aa 145 000 000 000 003362 55 000512 000467 003363 0a 000140 400000 003364 55 000503 000003 003365 aa 030 163 145 164 set_mcm_trace_table_size 003366 aa 137 155 143 155 003367 aa 137 164 162 141 003370 aa 143 145 137 164 003371 aa 141 142 154 145 003372 aa 137 163 151 172 003373 aa 145 000 000 000 003374 55 000523 000500 003375 0a 000137 400000 003376 55 000515 000003 003377 aa 024 163 145 164 set_mcm_global_trace 003400 aa 137 155 143 155 003401 aa 137 147 154 157 003402 aa 142 141 154 137 003403 aa 164 162 141 143 003404 aa 145 000 000 000 003405 55 000534 000512 003406 0a 000136 400000 003407 55 000526 000003 003410 aa 025 163 145 164 set_mcm_channel_trace 003411 aa 137 155 143 155 003412 aa 137 143 150 141 003413 aa 156 156 145 154 003414 aa 137 164 162 141 003415 aa 143 145 000 000 003416 55 000543 000523 003417 0a 000135 400000 003420 55 000537 000003 003421 aa 015 163 145 164 set_mask_ring 003422 aa 137 155 141 163 003423 aa 153 137 162 151 003424 aa 156 147 000 000 003425 55 000553 000534 003426 0a 000134 400000 003427 55 000546 000003 003430 aa 022 163 145 164 set_kst_attributes 003431 aa 137 153 163 164 003432 aa 137 141 164 164 003433 aa 162 151 142 165 003434 aa 164 145 163 000 003435 55 000563 000543 003436 0a 000133 400000 003437 55 000556 000003 003440 aa 020 163 145 164 set_for_reloader 003441 aa 137 146 157 162 003442 aa 137 162 145 154 003443 aa 157 141 144 145 003444 aa 162 000 000 000 003445 55 000571 000553 003446 0a 000132 400000 003447 55 000566 000003 003450 aa 013 163 145 164 set_flagbox 003451 aa 137 146 154 141 003452 aa 147 142 157 170 003453 55 000600 000563 003454 0a 000131 400000 003455 55 000574 000003 003456 aa 015 163 145 164 set_fdump_num 003457 aa 137 146 144 165 003460 aa 155 160 137 156 003461 aa 165 155 000 000 003462 55 000611 000571 003463 0a 000130 400000 003464 55 000603 000003 003465 aa 025 163 145 164 set_dir_ring_brackets 003466 aa 137 144 151 162 003467 aa 137 162 151 156 003470 aa 147 137 142 162 003471 aa 141 143 153 145 003472 aa 164 163 000 000 003473 55 000620 000600 003474 0a 000127 400000 003475 55 000614 000003 003476 aa 017 163 145 164 set_cpu_monitor 003477 aa 137 143 160 165 003500 aa 137 155 157 156 003501 aa 151 164 157 162 003502 55 000627 000611 003503 0a 000126 400000 003504 55 000623 000003 003505 aa 017 163 145 164 set_bce_command 003506 aa 137 142 143 145 003507 aa 137 143 157 155 003510 aa 155 141 156 144 003511 55 000635 000620 003512 0a 000125 400000 003513 55 000632 000003 003514 aa 013 163 145 164 set_bc_auth 003515 aa 137 142 143 137 003516 aa 141 165 164 150 003517 55 000645 000627 003520 0a 000124 400000 003521 55 000640 000003 003522 aa 020 163 145 164 set_backup_times 003523 aa 137 142 141 143 003524 aa 153 165 160 137 003525 aa 164 151 155 145 003526 aa 163 000 000 000 003527 55 000656 000635 003530 0a 000123 400000 003531 55 000650 000003 003532 aa 024 163 145 164 set_backup_dump_time 003533 aa 137 142 141 143 003534 aa 153 165 160 137 003535 aa 144 165 155 160 003536 aa 137 164 151 155 003537 aa 145 000 000 000 003540 55 000664 000645 003541 0a 000122 400000 003542 55 000661 000003 003543 aa 010 163 145 164 set_auth 003544 aa 137 141 165 164 003545 aa 150 000 000 000 003546 55 000673 000656 003547 0a 000121 400000 003550 55 000667 000003 003551 aa 017 163 143 141 scavenge_volume 003552 aa 166 145 156 147 003553 aa 145 137 166 157 003554 aa 154 165 155 145 003555 55 000702 000664 003556 0a 000120 400000 003557 55 000676 000003 003560 aa 016 163 141 154 salv_directory 003561 aa 166 137 144 151 003562 aa 162 145 143 164 003563 aa 157 162 171 000 003564 55 000711 000673 003565 0a 000117 400000 003566 55 000705 000003 003567 aa 014 162 151 156 ring_0_patch 003570 aa 147 137 060 137 003571 aa 160 141 164 143 003572 aa 150 000 000 000 003573 55 000720 000702 003574 0a 000116 400000 003575 55 000714 000003 003576 aa 015 162 145 163 restore_quota 003577 aa 164 157 162 145 003600 aa 137 161 165 157 003601 aa 164 141 000 000 003602 55 000727 000711 003603 0a 000115 400000 003604 55 000723 000003 003605 aa 017 162 145 160 replace_dir_acl 003606 aa 154 141 143 145 003607 aa 137 144 151 162 003610 aa 137 141 143 154 003611 55 000735 000720 003612 0a 000114 400000 003613 55 000732 000003 003614 aa 013 162 145 160 replace_acl 003615 aa 154 141 143 145 003616 aa 137 141 143 154 003617 55 000744 000727 003620 0a 000113 400000 003621 55 000740 000003 003622 aa 015 162 145 143 reconfig_info 003623 aa 157 156 146 151 003624 aa 147 137 151 156 003625 aa 146 157 000 000 003626 55 000753 000735 003627 0a 000112 400000 003630 55 000747 000003 003631 aa 016 162 145 141 read_partition 003632 aa 144 137 160 141 003633 aa 162 164 151 164 003634 aa 151 157 156 000 003635 55 000761 000744 003636 0a 000111 400000 003637 55 000756 000003 003640 aa 011 162 143 137 rc_unlock 003641 aa 165 156 154 157 003642 aa 143 153 000 000 003643 55 000770 000753 003644 0a 000110 400000 003645 55 000764 000003 003646 aa 017 162 143 137 rc_force_unlock 003647 aa 146 157 162 143 003650 aa 145 137 165 156 003651 aa 154 157 143 153 003652 55 000776 000761 003653 0a 000107 400000 003654 55 000773 000003 003655 aa 011 161 165 157 quota_set 003656 aa 164 141 137 163 003657 aa 145 164 000 000 003660 55 001005 000770 003661 0a 000106 400000 003662 55 001001 000003 003663 aa 014 161 165 157 quota_restor 003664 aa 164 141 137 162 003665 aa 145 163 164 157 003666 aa 162 000 000 000 003667 55 001013 000776 003670 0a 000105 400000 003671 55 001010 000003 003672 aa 013 161 165 157 quota_reset 003673 aa 164 141 137 162 003674 aa 145 163 145 164 003675 55 001022 001005 003676 0a 000104 400000 003677 55 001016 000003 003700 aa 014 161 165 157 quota_reload 003701 aa 164 141 137 162 003702 aa 145 154 157 141 003703 aa 144 000 000 000 003704 55 001030 001013 003705 0a 000103 400000 003706 55 001025 000003 003707 aa 012 161 165 157 quota_read 003710 aa 164 141 137 162 003711 aa 145 141 144 000 003712 55 001037 001022 003713 0a 000102 400000 003714 55 001033 000003 003715 aa 016 160 170 163 pxss_set_timax 003716 aa 163 137 163 145 003717 aa 164 137 164 151 003720 aa 155 141 170 000 003721 55 001045 001030 003722 0a 000101 400000 003723 55 001042 000003 003724 aa 013 160 166 137 pv_move_seg 003725 aa 155 157 166 145 003726 aa 137 163 145 147 003727 55 001054 001037 003730 0a 000100 400000 003731 55 001050 000003 003732 aa 014 160 166 137 pv_move_file 003733 aa 155 157 166 145 003734 aa 137 146 151 154 003735 aa 145 000 000 000 003736 55 001063 001045 003737 0a 000077 400000 003740 55 001057 000003 003741 aa 016 160 162 157 process_status 003742 aa 143 145 163 163 003743 aa 137 163 164 141 003744 aa 164 165 163 000 003745 55 001073 001054 003746 0a 000076 400000 003747 55 001066 000003 003750 aa 020 157 143 144 ocdcm_set_prompt 003751 aa 143 155 137 163 003752 aa 145 164 137 160 003753 aa 162 157 155 160 003754 aa 164 000 000 000 003755 55 001103 001063 003756 0a 000075 400000 003757 55 001076 000003 003760 aa 021 157 143 144 ocdcm_reconfigure 003761 aa 143 155 137 162 003762 aa 145 143 157 156 003763 aa 146 151 147 165 003764 aa 162 145 000 000 003765 55 001112 001073 003766 0a 000074 400000 003767 55 001106 000003 003770 aa 016 157 143 144 ocdcm_queue_io 003771 aa 143 155 137 161 003772 aa 165 145 165 145 003773 aa 137 151 157 000 003774 55 001122 001103 003775 0a 000073 400000 003776 55 001115 000003 003777 aa 020 157 143 144 ocdcm_printer_on 004000 aa 143 155 137 160 004001 aa 162 151 156 164 004002 aa 145 162 137 157 004003 aa 156 000 000 000 004004 55 001132 001112 004005 0a 000072 400000 004006 55 001125 000003 004007 aa 021 157 143 144 ocdcm_printer_off 004010 aa 143 155 137 160 004011 aa 162 151 156 164 004012 aa 145 162 137 157 004013 aa 146 146 000 000 004014 55 001142 001122 004015 0a 000071 400000 004016 55 001135 000003 004017 aa 021 157 143 144 ocdcm_priority_io 004020 aa 143 155 137 160 004021 aa 162 151 157 162 004022 aa 151 164 171 137 004023 aa 151 157 000 000 004024 55 001152 001132 004025 0a 000070 400000 004026 55 001145 000003 004027 aa 023 157 143 144 ocdcm_get_mc_output 004030 aa 143 155 137 147 004031 aa 145 164 137 155 004032 aa 143 137 157 165 004033 aa 164 160 165 164 004034 55 001163 001142 004035 0a 000067 400000 004036 55 001155 000003 004037 aa 024 157 143 144 ocdcm_err_event_chan 004040 aa 143 155 137 145 004041 aa 162 162 137 145 004042 aa 166 145 156 164 004043 aa 137 143 150 141 004044 aa 156 000 000 000 004045 55 001172 001152 004046 0a 000066 400000 004047 55 001166 000003 004050 aa 017 157 143 144 ocdcm_get_input 004051 aa 143 155 137 147 004052 aa 145 164 137 151 004053 aa 156 160 165 164 004054 55 001202 001163 004055 0a 000065 400000 004056 55 001175 000003 004057 aa 022 157 143 144 ocdcm_console_info 004060 aa 143 155 137 143 004061 aa 157 156 163 157 004062 aa 154 145 137 151 004063 aa 156 146 157 000 004064 55 001210 001172 004065 0a 000064 400000 004066 55 001205 000003 004067 aa 010 154 157 141 load_fnp 004070 aa 144 137 146 156 004071 aa 160 000 000 000 004072 55 001216 001202 004073 0a 000063 400000 004074 55 001213 000003 004075 aa 010 154 143 164 lct_init 004076 aa 137 151 156 151 004077 aa 164 000 000 000 004100 55 001224 001210 004101 0a 000062 400000 004102 55 001221 000003 004103 aa 012 151 160 163 ips_wakeup 004104 aa 137 167 141 153 004105 aa 145 165 160 000 004106 55 001234 001216 004107 0a 000061 400000 004110 55 001227 000003 004111 aa 020 151 156 151 init_multiplexer 004112 aa 164 137 155 165 004113 aa 154 164 151 160 004114 aa 154 145 170 145 004115 aa 162 000 000 000 004116 55 001243 001224 004117 0a 000060 400000 004120 55 001237 000003 004121 aa 014 151 156 151 init_channel 004122 aa 164 137 143 150 004123 aa 141 156 156 145 004124 aa 154 000 000 000 004125 55 001253 001234 004126 0a 000057 400000 004127 55 001246 000003 004130 aa 020 150 151 163 history_regs_set 004131 aa 164 157 162 171 004132 aa 137 162 145 147 004133 aa 163 137 163 145 004134 aa 164 000 000 000 004135 55 001263 001243 004136 0a 000056 400000 004137 55 001256 000003 004140 aa 020 150 151 163 history_regs_get 004141 aa 164 157 162 171 004142 aa 137 162 145 147 004143 aa 163 137 147 145 004144 aa 164 000 000 000 004145 55 001273 001253 004146 0a 000055 400000 004147 55 001266 000003 004150 aa 023 147 145 164 get_user_privileges 004151 aa 137 165 163 145 004152 aa 162 137 160 162 004153 aa 151 166 151 154 004154 aa 145 147 145 163 004155 55 001302 001263 004156 0a 000054 400000 004157 55 001276 000003 004160 aa 017 147 145 164 get_reset_quota 004161 aa 137 162 145 163 004162 aa 145 164 137 161 004163 aa 165 157 164 141 004164 55 001312 001273 004165 0a 000053 400000 004166 55 001305 000003 004167 aa 020 147 145 164 get_ipc_operands 004170 aa 137 151 160 143 004171 aa 137 157 160 145 004172 aa 162 141 156 144 004173 aa 163 000 000 000 004174 55 001321 001302 004175 0a 000052 400000 004176 55 001315 000003 004177 aa 015 147 145 164 get_fdump_num 004200 aa 137 146 144 165 004201 aa 155 160 137 156 004202 aa 165 155 000 000 004203 55 001327 001312 004204 0a 000051 400000 004205 55 001324 000003 004206 aa 010 147 145 164 get_devx 004207 aa 137 144 145 166 004210 aa 170 000 000 000 004211 55 001336 001321 004212 0a 000050 400000 004213 55 001332 000003 004214 aa 017 146 163 137 fs_get_trans_sw 004215 aa 147 145 164 137 004216 aa 164 162 141 156 004217 aa 163 137 163 167 004220 55 001344 001327 004221 0a 000047 400000 004222 55 001341 000003 004223 aa 012 146 154 165 flush_core 004224 aa 163 150 137 143 004225 aa 157 162 145 000 004226 55 001353 001336 004227 0a 000046 400000 004230 55 001347 000003 004231 aa 016 146 154 165 flush_ast_pool 004232 aa 163 150 137 141 004233 aa 163 164 137 160 004234 aa 157 157 154 000 004235 55 001361 001344 004236 0a 000045 400000 004237 55 001356 000003 004240 aa 011 146 144 165 fdump_fnp 004241 aa 155 160 137 146 004242 aa 156 160 000 000 004243 55 001367 001353 004244 0a 000044 400000 004245 55 001364 000003 004246 aa 011 144 151 163 disk_tune 004247 aa 153 137 164 165 004250 aa 156 145 000 000 004251 55 001376 001361 004252 0a 000043 400000 004253 55 001372 000003 004254 aa 015 144 151 162 dir_quota_set 004255 aa 137 161 165 157 004256 aa 164 141 137 163 004257 aa 145 164 000 000 004260 55 001406 001367 004261 0a 000042 400000 004262 55 001401 000003 004263 aa 020 144 151 162 dir_quota_restor 004264 aa 137 161 165 157 004265 aa 164 141 137 162 004266 aa 145 163 164 157 004267 aa 162 000 000 000 004270 55 001415 001376 004271 0a 000041 400000 004272 55 001411 000003 004273 aa 016 144 151 162 dir_quota_read 004274 aa 137 161 165 157 004275 aa 164 141 137 162 004276 aa 145 141 144 000 004277 55 001425 001406 004300 0a 000040 400000 004301 55 001420 000003 004302 aa 023 144 151 162 dir_get_reset_quota 004303 aa 137 147 145 164 004304 aa 137 162 145 163 004305 aa 145 164 137 161 004306 aa 165 157 164 141 004307 55 001436 001415 004310 0a 000037 400000 004311 55 001430 000003 004312 aa 026 144 145 163 destroy_process_finish 004313 aa 164 162 157 171 004314 aa 137 160 162 157 004315 aa 143 145 163 163 004316 aa 137 146 151 156 004317 aa 151 163 150 000 004320 55 001447 001425 004321 0a 000036 400000 004322 55 001441 000003 004323 aa 025 144 145 163 destroy_process_begin 004324 aa 164 162 157 171 004325 aa 137 160 162 157 004326 aa 143 145 163 163 004327 aa 137 142 145 147 004330 aa 151 156 000 000 004331 55 001456 001436 004332 0a 000035 400000 004333 55 001452 000003 004334 aa 014 144 145 154 delete_vtoce 004335 aa 145 164 145 137 004336 aa 166 164 157 143 004337 aa 145 000 000 000 004340 55 001464 001447 004341 0a 000034 400000 004342 55 001461 000003 004343 aa 012 144 145 154 delete_iom 004344 aa 145 164 145 137 004345 aa 151 157 155 000 004346 55 001475 001456 004347 0a 000033 400000 004350 55 001467 000003 004351 aa 026 144 145 154 delete_dir_acl_entries 004352 aa 145 164 145 137 004353 aa 144 151 162 137 004354 aa 141 143 154 137 004355 aa 145 156 164 162 004356 aa 151 145 163 000 004357 55 001504 001464 004360 0a 000032 400000 004361 55 001500 000003 004362 aa 016 144 145 154 delete_channel 004363 aa 145 164 145 137 004364 aa 143 150 141 156 004365 aa 156 145 154 000 004366 55 001514 001475 004367 0a 000031 400000 004370 55 001507 000003 004371 aa 022 144 145 154 delete_acl_entries 004372 aa 145 164 145 137 004373 aa 141 143 154 137 004374 aa 145 156 164 162 004375 aa 151 145 163 000 004376 55 001523 001504 004377 0a 000030 400000 004400 55 001517 000003 004401 aa 015 144 145 154 delentry_file 004402 aa 145 156 164 162 004403 aa 171 137 146 151 004404 aa 154 145 000 000 004405 55 001530 001514 004406 0a 000027 400000 004407 55 001526 000003 004410 aa 007 144 145 154 del_scu 004411 aa 137 163 143 165 004412 55 001536 001523 004413 0a 000026 400000 004414 55 001533 000003 004415 aa 010 144 145 154 del_main 004416 aa 137 155 141 151 004417 aa 156 000 000 000 004420 55 001543 001530 004421 0a 000025 400000 004422 55 001541 000003 004423 aa 007 144 145 154 del_cpu 004424 aa 137 143 160 165 004425 55 001553 001536 004426 0a 000024 400000 004427 55 001546 000003 004430 aa 023 144 145 146 define_work_classes 004431 aa 151 156 145 137 004432 aa 167 157 162 153 004433 aa 137 143 154 141 004434 aa 163 163 145 163 004435 55 001562 001543 004436 0a 000023 400000 004437 55 001556 000003 004440 aa 017 144 145 143 deconfigure_fnp 004441 aa 157 156 146 151 004442 aa 147 165 162 145 004443 aa 137 146 156 160 004444 55 001570 001553 004445 0a 000022 400000 004446 55 001565 000003 004447 aa 012 144 145 141 deactivate 004450 aa 143 164 151 166 004451 aa 141 164 145 000 004452 55 001576 001562 004453 0a 000021 400000 004454 55 001573 000003 004455 aa 013 143 162 145 create_proc 004456 aa 141 164 145 137 004457 aa 160 162 157 143 004460 55 001606 001570 004461 0a 000020 400000 004462 55 001601 000003 004463 aa 021 143 157 162 correct_seg_qused 004464 aa 162 145 143 164 004465 aa 137 163 145 147 004466 aa 137 161 165 163 004467 aa 145 144 000 000 004470 55 001615 001576 004471 0a 000017 400000 004472 55 001611 000003 004473 aa 015 143 157 162 correct_qused 004474 aa 162 145 143 164 004475 aa 137 161 165 163 004476 aa 145 144 000 000 004477 55 001625 001606 004500 0a 000016 400000 004501 55 001620 000003 004502 aa 021 143 157 162 correct_dir_qused 004503 aa 162 145 143 164 004504 aa 137 144 151 162 004505 aa 137 161 165 163 004506 aa 145 144 000 000 004507 55 001634 001615 004510 0a 000015 400000 004511 55 001630 000003 004512 aa 014 143 157 160 copy_stack_0 004513 aa 171 137 163 164 004514 aa 141 143 153 137 004515 aa 060 000 000 000 004516 55 001642 001625 004517 0a 000014 400000 004520 55 001637 000003 004521 aa 012 143 157 160 copy_fdump 004522 aa 171 137 146 144 004523 aa 165 155 160 000 004524 55 001651 001634 004525 0a 000013 400000 004526 55 001645 000003 004527 aa 015 143 157 156 configure_fnp 004530 aa 146 151 147 165 004531 aa 162 145 137 146 004532 aa 156 160 000 000 004533 55 001657 001642 004534 0a 000012 400000 004535 55 001654 000003 004536 aa 013 143 154 145 clear_vtoce 004537 aa 141 162 137 166 004540 aa 164 157 143 145 004541 55 001665 001651 004542 0a 000011 400000 004543 55 001662 000003 004544 aa 010 143 141 154 call_bce 004545 aa 154 137 142 143 004546 aa 145 000 000 000 004547 55 001675 001657 004550 0a 000010 400000 004551 55 001670 000003 004552 aa 021 141 160 160 append_master_dir 004553 aa 145 156 144 137 004554 aa 155 141 163 164 004555 aa 145 162 137 144 004556 aa 151 162 000 000 004557 55 001702 001665 004560 0a 000007 400000 004561 55 001700 000003 004562 aa 007 141 144 144 add_scu 004563 aa 137 163 143 165 004564 55 001710 001675 004565 0a 000006 400000 004566 55 001705 000003 004567 aa 010 141 144 144 add_main 004570 aa 137 155 141 151 004571 aa 156 000 000 000 004572 55 001715 001702 004573 0a 000005 400000 004574 55 001713 000003 004575 aa 007 141 144 144 add_iom 004576 aa 137 151 157 155 004577 55 001725 001710 004600 0a 000004 400000 004601 55 001720 000003 004602 aa 023 141 144 144 add_dir_acl_entries 004603 aa 137 144 151 162 004604 aa 137 141 143 154 004605 aa 137 145 156 164 004606 aa 162 151 145 163 004607 55 001732 001715 004610 0a 000003 400000 004611 55 001730 000003 004612 aa 007 141 144 144 add_cpu 004613 aa 137 143 160 165 004614 55 001740 001725 004615 0a 000002 400000 004616 55 001735 000003 004617 aa 013 141 144 144 add_channel 004620 aa 137 143 150 141 004621 aa 156 156 145 154 004622 55 001747 001732 004623 0a 000001 400000 004624 55 001743 000003 004625 aa 017 141 144 144 add_acl_entries 004626 aa 137 141 143 154 004627 aa 137 145 156 164 004630 aa 162 151 145 163 004631 55 001754 001740 004632 0a 000216 400000 004633 55 001752 000003 004634 aa 006 056 155 171 .my_lp 004635 aa 137 154 160 000 004636 55 001761 001747 004637 0a 000214 400000 004640 55 001757 000003 004641 aa 007 056 164 166 .tv_end 004642 aa 137 145 156 144 004643 55 000002 001754 004644 6a 000000 400002 004645 55 001764 000003 004646 aa 014 163 171 155 symbol_table 004647 aa 142 157 154 137 004650 aa 164 141 142 154 004651 aa 145 000 000 000 DEFINITIONS HASH TABLE 004652 aa 000000 000463 004653 aa 000000 000000 004654 5a 000300 000000 004655 5a 000170 000000 004656 aa 000000 000000 004657 5a 000332 000000 004660 5a 000343 000000 004661 5a 000313 000000 004662 5a 000467 000000 004663 5a 000512 000000 004664 5a 000645 000000 004665 aa 000000 000000 004666 aa 000000 000000 004667 aa 000000 000000 004670 5a 001415 000000 004671 5a 000711 000000 004672 5a 001263 000000 004673 aa 000000 000000 004674 5a 001504 000000 004675 aa 000000 000000 004676 aa 000000 000000 004677 aa 000000 000000 004700 5a 001152 000000 004701 aa 000000 000000 004702 aa 000000 000000 004703 5a 000270 000000 004704 5a 001361 000000 004705 5a 000133 000000 004706 5a 001625 000000 004707 5a 001530 000000 004710 5a 000054 000000 004711 aa 000000 000000 004712 aa 000000 000000 004713 aa 000000 000000 004714 aa 000000 000000 004715 aa 000000 000000 004716 aa 000000 000000 004717 aa 000000 000000 004720 aa 000000 000000 004721 5a 000424 000000 004722 aa 000000 000000 004723 aa 000000 000000 004724 5a 000664 000000 004725 5a 001553 000000 004726 aa 000000 000000 004727 aa 000000 000000 004730 aa 000000 000000 004731 aa 000000 000000 004732 5a 001376 000000 004733 5a 001302 000000 004734 5a 000417 000000 004735 aa 000000 000000 004736 5a 001336 000000 004737 aa 000000 000000 004740 aa 000000 000000 004741 aa 000000 000000 004742 5a 001073 000000 004743 5a 001122 000000 004744 5a 001132 000000 004745 aa 000000 000000 004746 5a 000157 000000 004747 aa 000000 000000 004750 5a 000354 000000 004751 5a 000500 000000 004752 aa 000000 000000 004753 aa 000000 000000 004754 aa 000000 000000 004755 5a 000217 000000 004756 aa 000000 000000 004757 aa 000000 000000 004760 aa 000000 000000 004761 aa 000000 000000 004762 5a 001054 000000 004763 5a 000233 000000 004764 5a 000761 000000 004765 5a 001005 000000 004766 5a 001464 000000 004767 aa 000000 000000 004770 5a 001030 000000 004771 5a 001327 000000 004772 5a 001045 000000 004773 aa 000000 000000 004774 5a 001367 000000 004775 5a 000151 000000 004776 5a 001312 000000 004777 5a 001425 000000 005000 5a 001447 000000 005001 5a 000033 000000 005002 5a 000744 000000 005003 aa 000000 000000 005004 5a 000210 000000 005005 5a 001103 000000 005006 aa 000000 000000 005007 aa 000000 000000 005010 aa 000000 000000 005011 aa 000000 000000 005012 5a 000523 000000 005013 5a 000600 000000 005014 aa 000000 000000 005015 aa 000000 000000 005016 aa 000000 000000 005017 aa 000000 000000 005020 aa 000000 000000 005021 5a 001543 000000 005022 aa 000000 000000 005023 aa 000000 000000 005024 aa 000000 000000 005025 5a 000563 000000 005026 5a 000627 000000 005027 5a 001344 000000 005030 5a 000010 000000 005031 aa 000000 000000 005032 aa 000000 000000 005033 aa 000000 000000 005034 5a 001642 000000 005035 aa 000000 000000 005036 aa 000000 000000 005037 aa 000000 000000 005040 5a 001606 000000 005041 aa 000000 000000 005042 aa 000000 000000 005043 aa 000000 000000 005044 aa 000000 000000 005045 aa 000000 000000 005046 aa 000000 000000 005047 5a 000702 000000 005050 aa 000000 000000 005051 aa 000000 000000 005052 aa 000000 000000 005053 aa 000000 000000 005054 5a 000407 000000 005055 5a 000543 000000 005056 aa 000000 000000 005057 aa 000000 000000 005060 5a 001675 000000 005061 5a 001710 000000 005062 5a 001725 000000 005063 5a 000727 000000 005064 aa 000000 000000 005065 5a 001665 000000 005066 5a 000142 000000 005067 5a 000656 000000 005070 5a 000753 000000 005071 5a 000324 000000 005072 aa 000000 000000 005073 aa 000000 000000 005074 aa 000000 000000 005075 5a 000200 000000 005076 5a 001172 000000 005077 aa 000000 000000 005100 5a 001634 000000 005101 aa 000000 000000 005102 aa 000000 000000 005103 5a 000366 000000 005104 5a 001216 000000 005105 aa 000000 000000 005106 aa 000000 000000 005107 aa 000000 000000 005110 aa 000000 000000 005111 aa 000000 000000 005112 aa 000000 000000 005113 5a 000306 000000 005114 aa 000000 000000 005115 5a 001353 000000 005116 5a 000611 000000 005117 5a 000620 000000 005120 5a 000673 000000 005121 5a 000776 000000 005122 5a 001013 000000 005123 5a 001657 000000 005124 aa 000000 000000 005125 aa 000000 000000 005126 aa 000000 000000 005127 5a 001406 000000 005130 aa 000000 000000 005131 5a 001576 000000 005132 5a 001615 000000 005133 5a 001514 000000 005134 5a 000022 000000 005135 5a 000043 000000 005136 5a 000063 000000 005137 5a 001163 000000 005140 aa 000000 000000 005141 aa 000000 000000 005142 aa 000000 000000 005143 aa 000000 000000 005144 aa 000000 000000 005145 5a 000446 000000 005146 aa 000000 000000 005147 aa 000000 000000 005150 aa 000000 000000 005151 5a 000224 000000 005152 5a 001732 000000 005153 aa 000000 000000 005154 5a 000720 000000 005155 aa 000000 000000 005156 aa 000000 000000 005157 aa 000000 000000 005160 5a 000242 000000 005161 5a 000770 000000 005162 5a 001562 000000 005163 aa 000000 000000 005164 aa 000000 000000 005165 aa 000000 000000 005166 aa 000000 000000 005167 aa 000000 000000 005170 aa 000000 000000 005171 aa 000000 000000 005172 aa 000000 000000 005173 5a 000103 000000 005174 aa 000000 000000 005175 5a 001456 000000 005176 aa 000000 000000 005177 aa 000000 000000 005200 5a 000111 000000 005201 aa 000000 000000 005202 aa 000000 000000 005203 aa 000000 000000 005204 aa 000000 000000 005205 aa 000000 000000 005206 5a 001243 000000 005207 5a 001253 000000 005210 aa 000000 000000 005211 5a 001234 000000 005212 aa 000000 000000 005213 5a 001702 000000 005214 5a 000074 000000 005215 aa 000000 000000 005216 aa 000000 000000 005217 5a 001651 000000 005220 aa 000000 000000 005221 5a 001570 000000 005222 aa 000000 000000 005223 aa 000000 000000 005224 aa 000000 000000 005225 aa 000000 000000 005226 aa 000000 000000 005227 aa 000000 000000 005230 5a 001142 000000 005231 aa 000000 000000 005232 aa 000000 000000 005233 aa 000000 000000 005234 5a 001321 000000 005235 aa 000000 000000 005236 5a 000434 000000 005237 5a 001523 000000 005240 5a 001536 000000 005241 aa 000000 000000 005242 5a 001740 000000 005243 aa 000000 000000 005244 aa 000000 000000 005245 aa 000000 000000 005246 aa 000000 000000 005247 aa 000000 000000 005250 5a 001754 000000 005251 5a 000251 000000 005252 5a 000117 000000 005253 5a 000457 000000 005254 5a 000553 000000 005255 5a 000635 000000 005256 aa 000000 000000 005257 5a 000125 000000 005260 5a 001202 000000 005261 aa 000000 000000 005262 aa 000000 000000 005263 5a 001273 000000 005264 5a 001747 000000 005265 aa 000000 000000 005266 5a 001475 000000 005267 aa 000000 000000 005270 aa 000000 000000 005271 aa 000000 000000 005272 5a 001063 000000 005273 5a 001112 000000 005274 aa 000000 000000 005275 5a 000261 000000 005276 5a 001210 000000 005277 aa 000000 000000 005300 aa 000000 000000 005301 aa 000000 000000 005302 5a 001224 000000 005303 aa 000000 000000 005304 aa 000000 000000 005305 aa 000000 000000 005306 aa 000000 000000 005307 aa 000000 000000 005310 aa 000000 000000 005311 aa 000000 000000 005312 aa 000000 000000 005313 5a 000400 000000 005314 5a 000534 000000 005315 5a 000571 000000 005316 5a 001022 000000 005317 aa 000000 000000 005320 aa 000000 000000 005321 aa 000000 000000 005322 5a 001037 000000 005323 aa 000000 000000 005324 5a 001436 000000 005325 aa 000000 000000 005326 5a 001761 000000 005327 aa 000000 000000 005330 aa 000000 000000 005331 aa 000000 000000 005332 aa 000000 000000 005333 5a 001715 000000 005334 5a 000735 000000 005335 aa 000000 000000 EXTERNAL NAMES 005336 aa 023 166 145 162 verify_lock_bad_dir 005337 aa 151 146 171 137 005340 aa 154 157 143 153 005341 aa 137 142 141 144 005342 aa 137 144 151 162 005343 aa 013 166 145 162 verify_lock 005344 aa 151 146 171 137 005345 aa 154 157 143 153 005346 aa 017 166 145 162 verify_sequence 005347 aa 151 146 171 137 005350 aa 163 145 161 165 005351 aa 145 156 143 145 005352 aa 017 162 145 165 reuse_empty_log 005353 aa 163 145 137 145 005354 aa 155 160 164 171 005355 aa 137 154 157 147 005356 aa 021 163 145 164 set_recovery_flag 005357 aa 137 162 145 143 005360 aa 157 166 145 162 005361 aa 171 137 146 154 005362 aa 141 147 000 000 005363 aa 011 163 167 141 swap_logs 005364 aa 160 137 154 157 005365 aa 147 163 000 000 005366 aa 014 163 145 147 segment_info 005367 aa 155 145 156 164 005370 aa 137 151 156 146 005371 aa 157 000 000 000 005372 aa 015 163 164 141 start_copying 005373 aa 162 164 137 143 005374 aa 157 160 171 151 005375 aa 156 147 000 000 005376 aa 022 163 171 163 syserr_seg_manager 005377 aa 145 162 162 137 005400 aa 163 145 147 137 005401 aa 155 141 156 141 005402 aa 147 145 162 000 005403 aa 012 160 162 151 priv_write 005404 aa 166 137 167 162 005405 aa 151 164 145 000 005406 aa 004 167 151 162 wire 005407 aa 145 000 000 000 005410 aa 015 165 163 145 user_wire_seg 005411 aa 162 137 167 151 005412 aa 162 145 137 163 005413 aa 145 147 000 000 005414 aa 006 165 156 167 unwire 005415 aa 151 162 145 000 005416 aa 011 164 164 171 tty_write 005417 aa 137 167 162 151 005420 aa 164 145 000 000 005421 aa 015 150 160 162 hpriv_control 005422 aa 151 166 137 143 005423 aa 157 156 164 162 005424 aa 157 154 000 000 005425 aa 020 162 151 156 ring1_error_code 005426 aa 147 061 137 145 005427 aa 162 162 157 162 005430 aa 137 143 157 144 005431 aa 145 000 000 000 005432 aa 014 162 151 156 ring1_binary 005433 aa 147 061 137 142 005434 aa 151 156 141 162 005435 aa 171 000 000 000 005436 aa 005 162 151 156 ring1 005437 aa 147 061 000 000 005440 aa 013 163 171 163 syserr_real 005441 aa 145 162 162 137 005442 aa 162 145 141 154 005443 aa 013 163 164 157 stop_vacate 005444 aa 160 137 166 141 005445 aa 143 141 164 145 005446 aa 004 163 164 157 stop 005447 aa 160 000 000 000 005450 aa 005 163 164 141 start 005451 aa 162 164 000 000 005452 aa 011 154 151 163 list_priv 005453 aa 164 137 160 162 005454 aa 151 166 000 000 005455 aa 011 163 164 141 star_priv 005456 aa 162 137 160 162 005457 aa 151 166 000 000 005460 aa 007 150 143 137 hc_tune 005461 aa 164 165 156 145 005462 aa 025 163 145 164 set_system_time_zone_ 005463 aa 137 163 171 163 005464 aa 164 145 155 137 005465 aa 164 151 155 145 005466 aa 137 172 157 156 005467 aa 145 137 000 000 005470 aa 031 163 145 164 set_sys_audit_thresholds_ 005471 aa 137 163 171 163 005472 aa 137 141 165 144 005473 aa 151 164 137 164 005474 aa 150 162 145 163 005475 aa 150 157 154 144 005476 aa 163 137 000 000 005477 aa 016 163 171 163 system_default 005500 aa 164 145 155 137 005501 aa 144 145 146 141 005502 aa 165 154 164 000 005503 aa 017 147 151 166 given_processid 005504 aa 145 156 137 160 005505 aa 162 157 143 145 005506 aa 163 163 151 144 005507 aa 022 163 145 164 set_procs_required 005510 aa 137 160 162 157 005511 aa 143 163 137 162 005512 aa 145 161 165 151 005513 aa 162 145 144 000 005514 aa 016 163 145 164 set_work_class 005515 aa 137 167 157 162 005516 aa 153 137 143 154 005517 aa 141 163 163 000 005520 aa 015 163 145 164 set_poll_time 005521 aa 137 160 157 154 005522 aa 154 137 164 151 005523 aa 155 145 000 000 005524 aa 020 155 157 163 mos_memory_check 005525 aa 137 155 145 155 005526 aa 157 162 171 137 005527 aa 143 150 145 143 005530 aa 153 000 000 000 005531 aa 024 163 145 164 set_trace_table_size 005532 aa 137 164 162 141 005533 aa 143 145 137 164 005534 aa 141 142 154 145 005535 aa 137 163 151 172 005536 aa 145 000 000 000 005537 aa 020 163 145 164 set_global_trace 005540 aa 137 147 154 157 005541 aa 142 141 154 137 005542 aa 164 162 141 143 005543 aa 145 000 000 000 005544 aa 021 163 145 164 set_channel_trace 005545 aa 137 143 150 141 005546 aa 156 156 145 154 005547 aa 137 164 162 141 005550 aa 143 145 000 000 005551 aa 016 160 162 151 priv_mcs_trace 005552 aa 166 137 155 143 005553 aa 163 137 164 162 005554 aa 141 143 145 000 005555 aa 011 160 162 157 proc_info 005556 aa 143 137 151 156 005557 aa 146 157 000 000 005560 aa 021 150 151 147 highly_privileged 005561 aa 150 154 171 137 005562 aa 160 162 151 166 005563 aa 151 154 145 147 005564 aa 145 144 000 000 005565 aa 012 163 145 164 set_erf_no 005566 aa 137 145 162 146 005567 aa 137 156 157 000 005570 aa 013 146 154 141 flagbox_mgr 005571 aa 147 142 157 170 005572 aa 137 155 147 162 005573 aa 014 142 143 137 bc_auth_path 005574 aa 141 165 164 150 005575 aa 137 160 141 164 005576 aa 150 000 000 000 005577 aa 014 142 141 143 backup_times 005600 aa 153 165 160 137 005601 aa 164 151 155 145 005602 aa 163 000 000 000 005603 aa 020 142 141 143 backup_dump_time 005604 aa 153 165 160 137 005605 aa 144 165 155 160 005606 aa 137 164 151 155 005607 aa 145 000 000 000 005610 aa 004 141 165 164 auth 005611 aa 150 000 000 000 005612 aa 003 163 145 164 set 005613 aa 011 163 143 141 scavenger 005614 aa 166 145 156 147 005615 aa 145 162 000 000 005616 aa 005 160 141 164 patch 005617 aa 143 150 000 000 005620 aa 013 162 151 156 ring_0_peek 005621 aa 147 137 060 137 005622 aa 160 145 145 153 005623 aa 012 161 165 157 quota_util 005624 aa 164 141 137 165 005625 aa 164 151 154 000 005626 aa 011 160 162 151 priv_read 005627 aa 166 137 162 145 005630 aa 141 144 000 000 005631 aa 014 160 141 162 partition_io 005632 aa 164 151 164 151 005633 aa 157 156 137 151 005634 aa 157 000 000 000 005635 aa 004 161 163 145 qset 005636 aa 164 000 000 000 005637 aa 007 161 162 145 qrestor 005640 aa 163 164 157 162 005641 aa 006 161 162 145 qreset 005642 aa 163 145 164 000 005643 aa 007 161 162 145 qreload 005644 aa 154 157 141 144 005645 aa 012 160 162 151 priv_qread 005646 aa 166 137 161 162 005647 aa 145 141 144 000 005650 aa 011 163 145 164 set_timax 005651 aa 137 164 151 155 005652 aa 141 170 000 000 005653 aa 014 155 157 166 move_seg_seg 005654 aa 145 137 163 145 005655 aa 147 137 163 145 005656 aa 147 000 000 000 005657 aa 015 155 157 166 move_seg_file 005660 aa 145 137 163 145 005661 aa 147 137 146 151 005662 aa 154 145 000 000 005663 aa 012 163 145 164 set_prompt 005664 aa 137 160 162 157 005665 aa 155 160 164 000 005666 aa 013 162 145 143 reconfigure 005667 aa 157 156 146 151 005670 aa 147 165 162 145 005671 aa 010 161 165 145 queue_io 005672 aa 165 145 137 151 005673 aa 157 000 000 000 005674 aa 012 160 162 151 printer_on 005675 aa 156 164 145 162 005676 aa 137 157 156 000 005677 aa 013 160 162 151 printer_off 005700 aa 156 164 145 162 005701 aa 137 157 146 146 005702 aa 013 160 162 151 priority_io 005703 aa 157 162 151 164 005704 aa 171 137 151 157 005705 aa 015 147 145 164 get_mc_output 005706 aa 137 155 143 137 005707 aa 157 165 164 160 005710 aa 165 164 000 000 005711 aa 016 145 162 162 err_event_chan 005712 aa 137 145 166 145 005713 aa 156 164 137 143 005714 aa 150 141 156 000 005715 aa 011 147 145 164 get_input 005716 aa 137 151 156 160 005717 aa 165 164 000 000 005720 aa 014 143 157 156 console_info 005721 aa 163 157 154 145 005722 aa 137 151 156 146 005723 aa 157 000 000 000 005724 aa 006 157 143 144 ocdcm_ 005725 aa 143 155 137 000 005726 aa 004 154 157 141 load 005727 aa 144 000 000 000 005730 aa 016 160 145 162 per_system_set 005731 aa 137 163 171 163 005732 aa 164 145 155 137 005733 aa 163 145 164 000 005734 aa 016 160 145 162 per_system_get 005735 aa 137 163 171 163 005736 aa 164 145 155 137 005737 aa 147 145 164 000 005740 aa 020 150 151 163 history_reg_save 005741 aa 164 157 162 171 005742 aa 137 162 145 147 005743 aa 137 163 141 166 005744 aa 145 000 000 000 005745 aa 016 147 145 164 get_privileges 005746 aa 137 160 162 151 005747 aa 166 151 154 145 005750 aa 147 145 163 000 005751 aa 022 157 164 150 other_process_info 005752 aa 145 162 137 160 005753 aa 162 157 143 145 005754 aa 163 163 137 151 005755 aa 156 146 157 000 005756 aa 013 161 154 157 qlong_reset 005757 aa 156 147 137 162 005760 aa 145 163 145 164 005761 aa 025 147 145 164 get_ipc_operands_priv 005762 aa 137 151 160 143 005763 aa 137 157 160 145 005764 aa 162 141 156 144 005765 aa 163 137 160 162 005766 aa 151 166 000 000 005767 aa 007 164 143 137 tc_util 005770 aa 165 164 151 154 005771 aa 012 147 145 164 get_erf_no 005772 aa 137 145 162 146 005773 aa 137 156 157 000 005774 aa 024 160 162 151 priv_channel_manager 005775 aa 166 137 143 150 005776 aa 141 156 156 145 005777 aa 154 137 155 141 006000 aa 156 141 147 145 006001 aa 162 000 000 000 006002 aa 010 164 162 141 trans_sw 006003 aa 156 163 137 163 006004 aa 167 000 000 000 006005 aa 006 146 163 137 fs_get 006006 aa 147 145 164 000 006007 aa 002 160 143 000 pc 006010 aa 005 146 144 165 fdump 006011 aa 155 160 000 000 006012 aa 004 164 165 156 tune 006013 aa 145 000 000 000 006014 aa 014 144 151 163 disk_control 006015 aa 153 137 143 157 006016 aa 156 164 162 157 006017 aa 154 000 000 000 006020 aa 005 144 161 163 dqset 006021 aa 145 164 000 000 006022 aa 010 144 161 162 dqrestor 006023 aa 145 163 164 157 006024 aa 162 000 000 000 006025 aa 013 160 162 151 priv_dqread 006026 aa 166 137 144 161 006027 aa 162 145 141 144 006030 aa 014 144 161 154 dqlong_reset 006031 aa 157 156 147 137 006032 aa 162 145 163 145 006033 aa 164 000 000 000 006034 aa 005 161 165 157 quota 006035 aa 164 141 000 000 006036 aa 012 144 145 141 deact_proc 006037 aa 143 164 137 160 006040 aa 162 157 143 000 006041 aa 002 164 143 000 tc 006042 aa 013 144 145 143 deconfigure 006043 aa 157 156 146 151 006044 aa 147 165 162 145 006045 aa 005 146 157 162 force 006046 aa 143 145 000 000 006047 aa 021 144 145 155 demand_deactivate 006050 aa 141 156 144 137 006051 aa 144 145 141 143 006052 aa 164 151 166 141 006053 aa 164 145 000 000 006054 aa 006 143 162 145 create 006055 aa 141 164 145 000 006056 aa 010 141 143 164 act_proc 006057 aa 137 160 162 157 006060 aa 143 000 000 000 006061 aa 011 143 157 156 configure 006062 aa 146 151 147 165 006063 aa 162 145 000 000 006064 aa 010 146 156 160 fnp_util 006065 aa 137 165 164 151 006066 aa 154 000 000 000 006067 aa 005 143 154 145 clear 006070 aa 141 162 000 000 006071 aa 021 160 162 151 priv_delete_vtoce 006072 aa 166 137 144 145 006073 aa 154 145 164 145 006074 aa 137 166 164 157 006075 aa 143 145 000 000 006076 aa 012 155 141 163 master_dir 006077 aa 164 145 162 137 006100 aa 144 151 162 000 006101 aa 006 141 160 160 append 006102 aa 145 156 144 000 006103 aa 010 162 145 143 reconfig 006104 aa 157 156 146 151 006105 aa 147 000 000 000 006106 aa 013 151 157 137 io_reconfig 006107 aa 162 145 143 157 006110 aa 156 146 151 147 006111 aa 010 154 145 166 level_0_ 006112 aa 145 154 137 060 006113 aa 137 000 000 000 006114 aa 015 160 162 145 pre_empt_poll 006115 aa 137 145 155 160 006116 aa 164 137 160 157 006117 aa 154 154 000 000 006120 aa 004 160 170 163 pxss 006121 aa 163 000 000 000 006122 aa 024 160 162 145 pre_empt_poll_return 006123 aa 137 145 155 160 006124 aa 164 137 160 157 006125 aa 154 154 137 162 006126 aa 145 164 165 162 006127 aa 156 000 000 000 006130 aa 004 160 157 154 poll 006131 aa 154 000 000 000 006132 aa 012 162 151 156 ring_alarm 006133 aa 147 137 141 154 006134 aa 141 162 155 000 006135 aa 012 160 141 147 page_waits 006136 aa 145 137 167 141 006137 aa 151 164 163 000 006140 aa 015 166 151 162 virtual_delta 006141 aa 164 165 141 154 006142 aa 137 144 145 154 006143 aa 164 141 000 000 006144 aa 010 143 160 165 cpu_time 006145 aa 137 164 151 155 006146 aa 145 000 000 000 006147 aa 003 160 144 163 pds 006150 aa 006 143 154 157 clock_ 006151 aa 143 153 137 000 006152 aa 010 163 171 163 sys_info 006153 aa 137 151 156 146 006154 aa 157 000 000 000 006155 aa 011 165 156 167 unwinder_ 006156 aa 151 156 144 145 006157 aa 162 137 000 000 006160 aa 007 163 151 147 signal_ 006161 aa 156 141 154 137 NO TRAP POINTER WORDS TYPE PAIR BLOCKS 006162 aa 000004 000000 006163 55 002461 002454 006164 aa 000004 000000 006165 55 002514 002464 006166 aa 000004 000000 006167 55 002514 002470 006170 aa 000004 000000 006171 55 002514 002474 006172 aa 000004 000000 006173 55 002514 002501 006174 aa 000004 000000 006175 55 002514 002504 006176 aa 000004 000000 006177 55 002514 002510 006200 aa 000004 000000 006201 55 002747 002521 006202 aa 000004 000000 006203 55 003202 002524 006204 aa 000004 000000 006205 55 000114 000114 006206 aa 000004 000000 006207 55 000122 002526 006210 aa 000004 000000 006211 55 003202 002532 006212 aa 000004 000000 006213 55 003157 000136 006214 aa 000004 000000 006215 55 002534 000145 006216 aa 000004 000000 006217 55 003112 002537 006220 aa 000004 000000 006221 55 003112 000162 006222 aa 000004 000000 006223 55 003112 000173 006224 aa 000004 000000 006225 55 002556 002543 006226 aa 000004 000000 006227 55 002556 002550 006230 aa 000004 000000 006231 55 002556 002554 006232 aa 000004 000000 006233 55 002741 000227 006234 aa 000004 000000 006235 55 000114 002561 006236 aa 000004 000000 006237 55 000245 000245 006240 aa 000004 000000 006241 55 003112 002564 006242 aa 000004 000000 006243 55 003236 002566 006244 aa 000004 000000 006245 55 003112 002566 006246 aa 000004 000000 006247 55 000311 002570 006250 aa 000004 000000 006251 55 000311 002573 006252 aa 000004 000000 006253 55 003112 000327 006254 aa 000004 000000 006255 55 000327 000327 006256 aa 000004 000000 006257 55 002576 002730 006260 aa 000004 000000 006261 55 002600 002600 006262 aa 000004 000000 006263 55 002606 002606 006264 aa 000004 000000 006265 55 002625 002615 006266 aa 000004 000000 006267 55 000403 000403 006270 aa 000004 000000 006271 55 000403 000412 006272 aa 000004 000000 006273 55 000403 000422 006274 aa 000004 000000 006275 55 003227 000427 006276 aa 000004 000000 006277 55 002625 002621 006300 aa 000004 000000 006301 55 003236 002632 006302 aa 000004 000000 006303 55 003174 000462 006304 aa 000004 000000 006305 55 002642 002636 006306 aa 000004 000000 006307 55 002667 002647 006310 aa 000004 000000 006311 55 002667 002655 006312 aa 000004 000000 006313 55 002667 002662 006314 aa 000004 000000 006315 55 002673 000537 006316 aa 000004 000000 006317 55 000546 002676 006320 aa 000004 000000 006321 55 002730 000556 006322 aa 000004 000000 006323 55 002706 002730 006324 aa 000004 000000 006325 55 001637 002703 006326 aa 000004 000000 006327 55 003227 000603 006330 aa 000004 000000 006331 55 003105 000614 006332 aa 000004 000000 006333 55 002706 000623 006334 aa 000004 000000 006335 55 002730 002711 006336 aa 000004 000000 006337 55 002730 002715 006340 aa 000004 000000 006341 55 002730 002721 006342 aa 000004 000000 006343 55 002730 002726 006344 aa 000004 000000 006345 55 002731 002731 006346 aa 000004 000000 006347 55 000676 000676 006350 aa 000004 000000 006351 55 002736 002734 006352 aa 000004 000000 006353 55 002741 000714 006354 aa 000004 000000 006355 55 003227 000723 006356 aa 000004 000000 006357 55 003227 000732 006360 aa 000004 000000 006361 55 003221 000740 006362 aa 000004 000000 006363 55 002747 002744 006364 aa 000004 000000 006365 55 003221 000756 006366 aa 000004 000000 006367 55 003221 000764 006370 aa 000004 000000 006371 55 003152 002753 006372 aa 000004 000000 006373 55 003152 002755 006374 aa 000004 000000 006375 55 003152 002757 006376 aa 000004 000000 006377 55 003152 002761 006400 aa 000004 000000 006401 55 003152 002763 006402 aa 000004 000000 006403 55 003105 002766 006404 aa 000004 000000 006405 55 000114 002771 006406 aa 000004 000000 006407 55 000114 002775 006410 aa 000004 000000 006411 55 003105 001057 006412 aa 000004 000000 006413 55 003042 003001 006414 aa 000004 000000 006415 55 003042 003004 006416 aa 000004 000000 006417 55 003042 003007 006420 aa 000004 000000 006421 55 003042 003012 006422 aa 000004 000000 006423 55 003042 003015 006424 aa 000004 000000 006425 55 003042 003020 006426 aa 000004 000000 006427 55 003042 003023 006430 aa 000004 000000 006431 55 003042 003027 006432 aa 000004 000000 006433 55 003042 003033 006434 aa 000004 000000 006435 55 003042 003036 006436 aa 000004 000000 006437 55 003202 003044 006440 aa 000004 000000 006441 55 003112 001213 006442 aa 000004 000000 006443 55 003105 001221 006444 aa 000004 000000 006445 55 003112 001227 006446 aa 000004 000000 006447 55 003112 001237 006450 aa 000004 000000 006451 55 003056 003046 006452 aa 000004 000000 006453 55 003056 003052 006454 aa 000004 000000 006455 55 003067 003063 006456 aa 000004 000000 006457 55 003152 003074 006460 aa 000004 000000 006461 55 003105 003077 006462 aa 000004 000000 006463 55 001637 003107 006464 aa 000004 000000 006465 55 003112 001324 006466 aa 000004 000000 006467 55 003123 003120 006470 aa 000004 000000 006471 55 003125 001341 006472 aa 000004 000000 006473 55 001347 001347 006474 aa 000004 000000 006475 55 003202 003126 006476 aa 000004 000000 006477 55 003132 003130 006500 aa 000004 000000 006501 55 003152 003136 006502 aa 000004 000000 006503 55 003152 003140 006504 aa 000004 000000 006505 55 003152 003143 006506 aa 000004 000000 006507 55 003152 003146 006510 aa 000004 000000 006511 55 003154 001430 006512 aa 000004 000000 006513 55 003154 001441 006514 aa 000004 000000 006515 55 003207 003207 006516 aa 000004 000000 006517 55 003224 001461 006520 aa 000004 000000 006521 55 003227 001467 006522 aa 000004 000000 006523 55 003224 001500 006524 aa 000004 000000 006525 55 003227 001507 006526 aa 000004 000000 006527 55 003227 001517 006530 aa 000004 000000 006531 55 003221 001526 006532 aa 000004 000000 006533 55 003221 001533 006534 aa 000004 000000 006535 55 003221 001541 006536 aa 000004 000000 006537 55 003157 001546 006540 aa 000004 000000 006541 55 003202 003160 006542 aa 000004 000000 006543 55 003165 003163 006544 aa 000004 000000 006545 55 003174 003172 006546 aa 000004 000000 006547 55 001611 001601 006550 aa 000004 000000 006551 55 001611 001611 006552 aa 000004 000000 006553 55 001611 001620 006554 aa 000004 000000 006555 55 001630 001630 006556 aa 000004 000000 006557 55 001637 001637 006560 aa 000004 000000 006561 55 003202 003177 006562 aa 000004 000000 006563 55 003207 003205 006564 aa 000004 000000 006565 55 001662 001662 006566 aa 000004 000000 006567 55 003217 003214 006570 aa 000004 000000 006571 55 003221 001700 006572 aa 000004 000000 006573 55 003221 001705 006574 aa 000004 000000 006575 55 003224 001713 006576 aa 000004 000000 006577 55 003227 001720 006600 aa 000004 000000 006601 55 003221 001730 006602 aa 000004 000000 006603 55 003224 001735 006604 aa 000004 000000 006605 55 003227 001743 006606 aa 000004 000000 006607 55 003236 003232 006610 aa 000004 000000 006611 55 003265 003240 006612 aa 000004 000000 006613 55 003250 003246 006614 aa 000004 000000 006615 55 003265 003253 006616 aa 000004 000000 006617 55 003265 003256 006620 aa 000004 000000 006621 55 003265 003262 006622 aa 000004 000000 006623 55 003270 003266 006624 aa 000004 000000 006625 55 003273 003273 006626 aa 000004 000000 006627 55 003276 003276 006630 aa 000001 000000 006631 aa 000000 000000 INTERNAL EXPRESSION WORDS 006632 5a 003300 000000 006633 5a 003302 000000 006634 5a 003304 000000 006635 5a 003306 000000 006636 5a 003310 000000 006637 5a 003312 000000 006640 5a 003314 000000 006641 5a 003316 000000 006642 5a 003320 000000 006643 5a 003322 000000 006644 5a 003324 000000 006645 5a 003326 000000 006646 5a 003330 000000 006647 5a 003332 000000 006650 5a 003334 000000 006651 5a 003336 000000 006652 5a 003340 000000 006653 5a 003342 000000 006654 5a 003344 000000 006655 5a 003346 000000 006656 5a 003350 000000 006657 5a 003352 000000 006660 5a 003354 000000 006661 5a 003356 000000 006662 5a 003360 000000 006663 5a 003362 000000 006664 5a 003364 000000 006665 5a 003366 000000 006666 5a 003370 000000 006667 5a 003372 000000 006670 5a 003374 000000 006671 5a 003376 000000 006672 5a 003400 000000 006673 5a 003402 000000 006674 5a 003404 000000 006675 5a 003406 000000 006676 5a 003410 000000 006677 5a 003412 000000 006700 5a 003414 000000 006701 5a 003416 000000 006702 5a 003420 000000 006703 5a 003422 000000 006704 5a 003424 000000 006705 5a 003426 000000 006706 5a 003430 000000 006707 5a 003432 000000 006710 5a 003434 000000 006711 5a 003436 000000 006712 5a 003440 000000 006713 5a 003442 000000 006714 5a 003444 000000 006715 5a 003446 000000 006716 5a 003450 000000 006717 5a 003452 000000 006720 5a 003454 000000 006721 5a 003456 000000 006722 5a 003460 000000 006723 5a 003462 000000 006724 5a 003464 000000 006725 5a 003466 000000 006726 5a 003470 000000 006727 5a 003472 000000 006730 5a 003474 000000 006731 5a 003476 000000 006732 5a 003500 000000 006733 5a 003502 000000 006734 5a 003504 000000 006735 5a 003506 000000 006736 5a 003510 000000 006737 5a 003512 000000 006740 5a 003514 000000 006741 5a 003516 000000 006742 5a 003520 000000 006743 5a 003522 000000 006744 5a 003524 000000 006745 5a 003526 000000 006746 5a 003530 000000 006747 5a 003532 000000 006750 5a 003534 000000 006751 5a 003536 000000 006752 5a 003540 000000 006753 5a 003542 000000 006754 5a 003544 000000 006755 5a 003546 000000 006756 5a 003550 000000 006757 5a 003552 000000 006760 5a 003554 000000 006761 5a 003556 000000 006762 5a 003560 000000 006763 5a 003562 000000 006764 5a 003564 000000 006765 5a 003566 000000 006766 5a 003570 000000 006767 5a 003572 000000 006770 5a 003574 000000 006771 5a 003576 000000 006772 5a 003600 000000 006773 5a 003602 000000 006774 5a 003604 000000 006775 5a 003606 000000 006776 5a 003610 000000 006777 5a 003612 000000 007000 5a 003614 000000 007001 5a 003616 000000 007002 5a 003620 000000 007003 5a 003622 000000 007004 5a 003624 000000 007005 5a 003626 000000 007006 5a 003630 000000 007007 5a 003632 000000 007010 5a 003634 000000 007011 5a 003636 000000 007012 5a 003640 000000 007013 5a 003642 000000 007014 5a 003644 000000 007015 5a 003646 000000 007016 5a 003650 000000 007017 5a 003652 000000 007020 5a 003654 000000 007021 5a 003656 000000 007022 5a 003660 000000 007023 5a 003662 000000 007024 5a 003664 000000 007025 5a 003666 000000 007026 5a 003670 000000 007027 5a 003672 000000 007030 5a 003674 000000 007031 5a 003676 000000 007032 5a 003700 000000 007033 5a 003702 000000 007034 5a 003704 000000 007035 5a 003706 000000 007036 5a 003710 000000 007037 5a 003712 000000 007040 5a 003714 000000 007041 5a 003716 000000 007042 5a 003720 000000 007043 5a 003722 000000 007044 5a 003724 000000 007045 5a 003726 000000 007046 5a 003730 000000 007047 5a 003732 000000 007050 5a 003734 000000 007051 5a 003736 000000 007052 5a 003740 000000 007053 5a 003742 000000 007054 5a 003744 000000 007055 aa 000000 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 0a 002662 000000 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 002120 002566 000007 a2 000000 002110 002120 9a 775660 0000 46 signal_|signal_ 002121 5a 004172 0000 00 002122 9a 775656 0000 46 unwinder_|unwinder_ 002123 5a 004171 0000 00 002124 9a 775654 0000 46 sys_info|clock_ 002125 5a 004170 0000 20 002126 9a 775652 0000 46 pds|cpu_time 002127 5a 004167 0000 00 002130 9a 775650 0000 46 pds|virtual_delta 002131 5a 004166 0000 00 002132 9a 775646 0000 46 pds|page_waits 002133 5a 004165 0000 00 002134 9a 775644 0000 46 ring_alarm|poll 002135 5a 004164 0000 00 002136 9a 775642 0000 46 pds|pre_empt_poll_return 002137 5a 004163 0000 00 002140 9a 775640 0000 46 pxss|pre_empt_poll 002141 5a 004162 0000 00 002142 9a 775636 0000 46 level_0_|add_acl_entries 002143 5a 004161 0000 00 002144 9a 775634 0000 46 io_reconfig|add_channel 002145 5a 004160 0000 00 002146 9a 775632 0000 46 reconfig|add_cpu 002147 5a 004157 0000 00 002150 9a 775630 0000 46 level_0_|add_dir_acl_entries 002151 5a 004156 0000 00 002152 9a 775626 0000 46 io_reconfig|add_iom 002153 5a 004155 0000 00 002154 9a 775624 0000 46 reconfig|add_main 002155 5a 004154 0000 00 002156 9a 775622 0000 46 reconfig|add_scu 002157 5a 004153 0000 00 002160 9a 775620 0000 46 append|master_dir 002161 5a 004152 0000 00 002162 9a 775616 0000 46 call_bce|call_bce 002163 5a 004151 0000 00 002164 9a 775614 0000 46 priv_delete_vtoce|clear 002165 5a 004150 0000 00 002166 9a 775612 0000 46 fnp_util|configure 002167 5a 004147 0000 00 002170 9a 775610 0000 46 copy_fdump|copy_fdump 002171 5a 004146 0000 00 002172 9a 775606 0000 46 copy_stack_0|copy_stack_0 002173 5a 004145 0000 00 002174 9a 775604 0000 46 correct_qused|correct_dir_qused 002175 5a 004144 0000 00 002176 9a 775602 0000 46 correct_qused|correct_qused 002177 5a 004143 0000 00 002200 9a 775600 0000 46 correct_qused|correct_seg_qused 002201 5a 004142 0000 00 002202 9a 775576 0000 46 act_proc|create 002203 5a 004141 0000 00 002204 9a 775574 0000 46 demand_deactivate|force 002205 5a 004140 0000 00 002206 9a 775572 0000 46 fnp_util|deconfigure 002207 5a 004137 0000 00 002210 9a 775570 0000 46 tc|define_work_classes 002211 5a 004136 0000 00 002212 9a 775566 0000 46 reconfig|del_cpu 002213 5a 004135 0000 00 002214 9a 775564 0000 46 reconfig|del_main 002215 5a 004134 0000 00 002216 9a 775562 0000 46 reconfig|del_scu 002217 5a 004133 0000 00 002220 9a 775560 0000 46 level_0_|delentry_file 002221 5a 004132 0000 00 002222 9a 775556 0000 46 level_0_|delete_acl_entries 002223 5a 004131 0000 00 002224 9a 775554 0000 46 io_reconfig|delete_channel 002225 5a 004130 0000 00 002226 9a 775552 0000 46 level_0_|delete_dir_acl_entries 002227 5a 004127 0000 00 002230 9a 775550 0000 46 io_reconfig|delete_iom 002231 5a 004126 0000 00 002232 9a 775546 0000 46 priv_delete_vtoce|priv_delete_vtoce 002233 5a 004125 0000 00 002234 9a 775544 0000 46 deact_proc|destroy_process_begin 002235 5a 004124 0000 00 002236 9a 775542 0000 46 deact_proc|destroy_process_finish 002237 5a 004123 0000 00 002240 9a 775540 0000 46 quota|dqlong_reset 002241 5a 004122 0000 00 002242 9a 775536 0000 46 quota|priv_dqread 002243 5a 004121 0000 00 002244 9a 775534 0000 46 quota|dqrestor 002245 5a 004120 0000 00 002246 9a 775532 0000 46 quota|dqset 002247 5a 004117 0000 00 002250 9a 775530 0000 46 disk_control|tune 002251 5a 004116 0000 00 002252 9a 775526 0000 46 fnp_util|fdump 002253 5a 004115 0000 00 002254 9a 775524 0000 46 flush_ast_pool|flush_ast_pool 002255 5a 004114 0000 00 002256 9a 775522 0000 46 pc|flush_core 002257 5a 004113 0000 00 002260 9a 775520 0000 46 fs_get|trans_sw 002261 5a 004112 0000 00 002262 9a 775516 0000 46 priv_channel_manager|get_devx 002263 5a 004111 0000 00 002264 9a 775514 0000 46 copy_fdump|get_erf_no 002265 5a 004110 0000 00 002266 9a 775512 0000 46 tc_util|get_ipc_operands_priv 002267 5a 004107 0000 00 002270 9a 775510 0000 46 quota|qlong_reset 002271 5a 004106 0000 00 002272 9a 775506 0000 46 other_process_info|get_privileges 002273 5a 004105 0000 00 002274 9a 775504 0000 46 history_reg_save|per_system_get 002275 5a 004104 0000 00 002276 9a 775502 0000 46 history_reg_save|per_system_set 002277 5a 004103 0000 00 002300 9a 775500 0000 46 priv_channel_manager|init_channel 002301 5a 004102 0000 00 002302 9a 775476 0000 46 priv_channel_manager|init_multiplexer 002303 5a 004101 0000 00 002304 9a 775474 0000 46 tc_util|ips_wakeup 002305 5a 004100 0000 00 002306 9a 775472 0000 46 priv_channel_manager|lct_init 002307 5a 004077 0000 00 002310 9a 775470 0000 46 fnp_util|load 002311 5a 004076 0000 00 002312 9a 775466 0000 46 ocdcm_|console_info 002313 5a 004075 0000 00 002314 9a 775464 0000 46 ocdcm_|get_input 002315 5a 004074 0000 00 002316 9a 775462 0000 46 ocdcm_|err_event_chan 002317 5a 004073 0000 00 002320 9a 775460 0000 46 ocdcm_|get_mc_output 002321 5a 004072 0000 00 002322 9a 775456 0000 46 ocdcm_|priority_io 002323 5a 004071 0000 00 002324 9a 775454 0000 46 ocdcm_|printer_off 002325 5a 004070 0000 00 002326 9a 775452 0000 46 ocdcm_|printer_on 002327 5a 004067 0000 00 002330 9a 775450 0000 46 ocdcm_|queue_io 002331 5a 004066 0000 00 002332 9a 775446 0000 46 ocdcm_|reconfigure 002333 5a 004065 0000 00 002334 9a 775444 0000 46 ocdcm_|set_prompt 002335 5a 004064 0000 00 002336 9a 775442 0000 46 tc_util|process_status 002337 5a 004063 0000 00 002340 9a 775440 0000 46 vacate_pv|move_seg_file 002341 5a 004062 0000 00 002342 9a 775436 0000 46 vacate_pv|move_seg_seg 002343 5a 004061 0000 00 002344 9a 775434 0000 46 tc_util|set_timax 002345 5a 004060 0000 00 002346 9a 775432 0000 46 quota|priv_qread 002347 5a 004057 0000 00 002350 9a 775430 0000 46 quota|qreload 002351 5a 004056 0000 00 002352 9a 775426 0000 46 quota|qreset 002353 5a 004055 0000 00 002354 9a 775424 0000 46 quota|qrestor 002355 5a 004054 0000 00 002356 9a 775422 0000 46 quota|qset 002357 5a 004053 0000 00 002360 9a 775420 0000 46 reconfig|rc_force_unlock 002361 5a 004052 0000 00 002362 9a 775416 0000 46 reconfig|rc_unlock 002363 5a 004051 0000 00 002364 9a 775414 0000 46 partition_io|priv_read 002365 5a 004050 0000 00 002366 9a 775412 0000 46 reconfig|reconfig_info 002367 5a 004047 0000 00 002370 9a 775410 0000 46 level_0_|replace_acl 002371 5a 004046 0000 00 002372 9a 775406 0000 46 level_0_|replace_dir_acl 002373 5a 004045 0000 00 002374 9a 775404 0000 46 quota_util|restore_quota 002375 5a 004044 0000 00 002376 9a 775402 0000 46 ring_0_peek|patch 002377 5a 004043 0000 00 002400 9a 775400 0000 46 salv_directory|salv_directory 002401 5a 004042 0000 00 002402 9a 775376 0000 46 scavenger|scavenger 002403 5a 004041 0000 00 002404 9a 775374 0000 46 set|auth 002405 5a 004040 0000 00 002406 9a 775372 0000 46 set|backup_dump_time 002407 5a 004037 0000 00 002410 9a 775370 0000 46 set|backup_times 002411 5a 004036 0000 00 002412 9a 775366 0000 46 set|bc_auth_path 002413 5a 004035 0000 00 002414 9a 775364 0000 46 flagbox_mgr|set_bce_command 002415 5a 004034 0000 00 002416 9a 775362 0000 46 tc_util|set_cpu_monitor 002417 5a 004033 0000 00 002420 9a 775360 0000 46 level_0_|set_dir_ring_brackets 002421 5a 004032 0000 00 002422 9a 775356 0000 46 copy_fdump|set_erf_no 002423 5a 004031 0000 00 002424 9a 775354 0000 46 flagbox_mgr|set 002425 5a 004030 0000 00 002426 9a 775352 0000 46 set|set_for_reloader 002427 5a 004027 0000 00 002430 9a 775350 0000 46 set_kst_attributes|highly_privileged 002431 5a 004026 0000 00 002432 9a 775346 0000 46 proc_info|set_mask_ring 002433 5a 004025 0000 00 002434 9a 775344 0000 46 priv_mcs_trace|set_channel_trace 002435 5a 004024 0000 00 002436 9a 775342 0000 46 priv_mcs_trace|set_global_trace 002437 5a 004023 0000 00 002440 9a 775340 0000 46 priv_mcs_trace|set_trace_table_size 002441 5a 004022 0000 00 002442 9a 775336 0000 46 mos_memory_check|set_poll_time 002443 5a 004021 0000 00 002444 9a 775334 0000 46 act_proc|set_pit_tty_info 002445 5a 004020 0000 00 002446 9a 775332 0000 46 pxss|set_work_class 002447 5a 004017 0000 00 002450 9a 775330 0000 46 set_procs_required|given_processid 002451 5a 004016 0000 00 002452 9a 775326 0000 46 level_0_|set_ring_brackets 002453 5a 004015 0000 00 002454 9a 775324 0000 46 set_sons_lvid|set_rpv 002455 5a 004014 0000 00 002456 9a 775322 0000 46 set_sons_lvid|set_pdir_sons_lvid 002457 5a 004013 0000 00 002460 9a 775320 0000 46 set_sons_lvid|set_sons_lvid 002461 5a 004012 0000 00 002462 9a 775316 0000 46 set_procs_required|system_default 002463 5a 004011 0000 00 002464 9a 775314 0000 46 set_sys_audit_thresholds_|set_sys_audit_thresholds_ 002465 5a 004010 0000 00 002466 9a 775312 0000 46 set_system_time_zone_|set_system_time_zone_ 002467 5a 004007 0000 00 002470 9a 775310 0000 46 hc_tune|set 002471 5a 004006 0000 00 002472 9a 775306 0000 46 shutdown|shutdown 002473 5a 004005 0000 00 002474 9a 775304 0000 46 priv_channel_manager|shutdown 002475 5a 004004 0000 00 002476 9a 775302 0000 46 star_|star_priv 002477 5a 004003 0000 00 002500 9a 775300 0000 46 star_|list_priv 002501 5a 004002 0000 00 002502 9a 775276 0000 46 priv_channel_manager|start 002503 5a 004001 0000 00 002504 9a 775274 0000 46 pxss|start 002505 5a 004000 0000 00 002506 9a 775272 0000 46 priv_channel_manager|stop 002507 5a 003777 0000 00 002510 9a 775270 0000 46 stop_process|stop_process 002511 5a 003776 0000 00 002512 9a 775266 0000 46 vacate_pv|stop_vacate 002513 5a 003775 0000 00 002514 9a 775264 0000 46 quota_util|suspend_quota 002515 5a 003774 0000 00 002516 9a 775262 0000 46 syserr_real|ring1 002517 5a 003773 0000 00 002520 9a 775260 0000 46 syserr_real|ring1_binary 002521 5a 003772 0000 00 002522 9a 775256 0000 46 syserr_real|ring1_error_code 002523 5a 003771 0000 00 002524 9a 775254 0000 46 priv_channel_manager|terminate_channel 002525 5a 003770 0000 00 002526 9a 775252 0000 46 priv_channel_manager|terminate_multiplexer 002527 5a 003767 0000 00 002530 9a 775250 0000 46 priv_channel_manager|hpriv_control 002531 5a 003766 0000 00 002532 9a 775246 0000 46 tty_write|tty_write_force 002533 5a 003765 0000 00 002534 9a 775244 0000 46 tc|tune_work_class 002535 5a 003764 0000 00 002536 9a 775242 0000 46 fnp_util|unwire 002537 5a 003763 0000 00 002540 9a 775240 0000 46 user_wire|user_wire_seg 002541 5a 003762 0000 00 002542 9a 775236 0000 46 vacate_pv|vacate_pv 002543 5a 003761 0000 00 002544 9a 775234 0000 46 fnp_util|wire 002545 5a 003760 0000 00 002546 9a 775232 0000 46 partition_io|priv_write 002547 5a 003757 0000 00 002550 9a 775230 0000 46 syserr_seg_manager|start_copying 002551 5a 003756 0000 00 002552 9a 775226 0000 46 syserr_seg_manager|segment_info 002553 5a 003755 0000 00 002554 9a 775224 0000 46 syserr_seg_manager|swap_logs 002555 5a 003754 0000 00 002556 9a 775222 0000 46 syserr_seg_manager|set_recovery_flag 002557 5a 003753 0000 00 002560 9a 775220 0000 46 syserr_seg_manager|reuse_empty_log 002561 5a 003752 0000 00 002562 9a 775216 0000 46 syserr_seg_manager|verify_sequence 002563 5a 003751 0000 00 002564 9a 775214 0000 46 verify_lock|verify_lock_bad_dir 002565 5a 003750 0000 00 SYMBOL INFORMATION SYMBOL TABLE HEADER 000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000010 000004 aa 000000 117244 000005 aa 361023 525721 000006 aa 000000 117547 000007 aa 246731 244021 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 001275 000020 aa 000000 000201 000021 aa 000651 000470 000022 aa 001263 000201 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 070056 061064 000030 aa 040115 141162 000031 aa 143150 040061 000032 aa 071070 071040 000033 aa 040040 040040 000034 aa 110151 162156 000035 aa 145151 163145 000036 aa 156056 123171 000037 aa 163115 141151 000040 aa 156164 056141 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 000006 000066 aa 000116 000035 000067 aa 175453 027617 000070 aa 000000 117547 000071 aa 225503 000000 000072 aa 000126 000041 000073 aa 134571 651553 000074 aa 000000 113462 000075 aa 317506 600000 000076 aa 000137 000042 000077 aa 147777 464111 000100 aa 000000 115000 000101 aa 507463 000000 000102 aa 000150 000041 000103 aa 052721 247134 000104 aa 000000 105272 000105 aa 317215 400000 000106 aa 000161 000037 000107 aa 127236 043523 000110 aa 000000 112724 000111 aa 701744 400000 000112 aa 000171 000035 000113 aa 043243 130223 000114 aa 000000 102727 000115 aa 712743 600000 000116 aa 076163 160145 >spec>install>1115>hphcs_.alm 000117 aa 143076 151156 000120 aa 163164 141154 000121 aa 154076 061061 000122 aa 061065 076150 000123 aa 160150 143163 000124 aa 137056 141154 000125 aa 155040 040040 000126 aa 076154 144144 >ldd>include>gate_macros.incl.alm 000127 aa 076151 156143 000130 aa 154165 144145 000131 aa 076147 141164 000132 aa 145137 155141 000133 aa 143162 157163 000134 aa 056151 156143 000135 aa 154056 141154 000136 aa 155040 040040 000137 aa 076154 144144 >ldd>include>stack_header.incl.alm 000140 aa 076151 156143 000141 aa 154165 144145 000142 aa 076163 164141 000143 aa 143153 137150 000144 aa 145141 144145 000145 aa 162056 151156 000146 aa 143154 056141 000147 aa 154155 040040 000150 aa 076154 144144 >ldd>include>stack_frame.incl.alm 000151 aa 076151 156143 000152 aa 154165 144145 000153 aa 076163 164141 000154 aa 143153 137146 000155 aa 162141 155145 000156 aa 056151 156143 000157 aa 154056 141154 000160 aa 155040 040040 000161 aa 076154 144144 >ldd>include>gate_data.incl.alm 000162 aa 076151 156143 000163 aa 154165 144145 000164 aa 076147 141164 000165 aa 145137 144141 000166 aa 164141 056151 000167 aa 156143 154056 000170 aa 141154 155040 000171 aa 076154 144144 >ldd>include>on_unit.incl.alm 000172 aa 076151 156143 000173 aa 154165 144145 000174 aa 076157 156137 000175 aa 165156 151164 000176 aa 056151 156143 000177 aa 154056 141154 000200 aa 155040 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number 220 .actor hphcs_: 41. 2600 .bad_dir_desc hphcs_: 182. 2576 .bad_dir_name hphcs_: 182. 2636 .continue_signal hphcs_: 182. 254 .defs_loop hphcs_: 41. 71 .entryp hphcs_: 41, 182. 317 .gate_errordesc hphcs_: 41. 314 .gate_errorname hphcs_: 41. 2601 .handler hphcs_: 182. 212 .handler_entry hphcs_: 182. 213 .handler_restart_entry hphcs_: 182. 2641 .handler_restart_point hphcs_: 182. 52 .label_variable hphcs_: 41, 182. 76 .mcptr hphcs_: 41, 182. 216 .my_lp hphcs_: 41, 182. 262 .next_def hphcs_: 41. 320 .no_gate_error hphcs_: 41. 402 .one_arg_header hphcs_: 41. 56 .on_unit hphcs_: 41, 182. 70 .pf hphcs_: 41. 330 .return_code hphcs_: 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180. 357 .return_code_return hphcs_: 41. 237 .return_name hphcs_: 41. 360 .ring_alarm hphcs_: 41. 100 .ring_alarm_arg_list hphcs_: 41. 252 .search_defs hphcs_: 41. 265 .setup hphcs_: 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180. 2556 .set_dir_trap hphcs_: 43, 46, 56, 57, 58, 66, 67, 69, 74, 75, 76, 77, 86, 109, 110, 111, 112, 113, 118, 119, 124, 125, 126, 127, 128, 130, 132, 133, 143, 144, 145, 146, 153, 154, 182. 50 .temp hphcs_: 41. 52 .time1 hphcs_: 41. 54 .time2 hphcs_: 41. 0 .tv_begin hphcs_: 41. 214 .tv_end hphcs_: 41. 56 .unwinder_arglist hphcs_: 41, 182. 72 .vfl_arglist hphcs_: 41, 182. act_proc hphcs_: 59, 140. 1 add_acl_entries hphcs_: 43. 405 add_acl_entries.e hphcs_: 43. 10 add_acl_entries.t hphcs_: 43. 2 add_channel hphcs_: 44. 416 add_channel.e hphcs_: 44. 20 add_channel.t hphcs_: 44. 3 add_cpu hphcs_: 45. 426 add_cpu.e hphcs_: 45. 30 add_cpu.t hphcs_: 45. 4 add_dir_acl_entries hphcs_: 46. 436 add_dir_acl_entries.e hphcs_: 46. 40 add_dir_acl_entries.t hphcs_: 46. 5 add_iom hphcs_: 47. 447 add_iom.e hphcs_: 47. 50 add_iom.t hphcs_: 47. 6 add_main hphcs_: 48. 457 add_main.e hphcs_: 48. 60 add_main.t hphcs_: 48. 7 add_scu hphcs_: 49. 467 add_scu.e hphcs_: 49. 70 add_scu.t hphcs_: 49. append hphcs_: 50. 10 append_master_dir hphcs_: 50. 477 append_master_dir.e hphcs_: 50. 100 append_master_dir.t hphcs_: 50. auth hphcs_: 124. backup_dump_time hphcs_: 125. backup_times hphcs_: 126. bc_auth_path hphcs_: 127. 11 call_bce hphcs_: 51. 507 call_bce.e hphcs_: 51. 110 call_bce.t hphcs_: 51. 1170 call_offset stack_header: 80. clear hphcs_: 52. 12 clear_vtoce hphcs_: 52. 517 clear_vtoce.e hphcs_: 52. 120 clear_vtoce.t hphcs_: 52. clock_ hphcs_: 41. configure hphcs_: 53. 13 configure_fnp hphcs_: 53. 527 configure_fnp.e hphcs_: 53. 130 configure_fnp.t hphcs_: 53. console_info hphcs_: 95. 14 copy_fdump hphcs_: 54, 84, 131. 537 copy_fdump.e hphcs_: 54. 140 copy_fdump.t hphcs_: 54. 15 copy_stack_0 hphcs_: 55. 547 copy_stack_0.e hphcs_: 55. 150 copy_stack_0.t hphcs_: 55. 16 correct_dir_qused hphcs_: 56. 557 correct_dir_qused.e hphcs_: 56. 160 correct_dir_qused.t hphcs_: 56. 17 correct_qused hphcs_: 56, 57, 58. 570 correct_qused.e hphcs_: 57. 170 correct_qused.t hphcs_: 57. 20 correct_seg_qused hphcs_: 58. 601 correct_seg_qused.e hphcs_: 58. 200 correct_seg_qused.t hphcs_: 58. cpu_time hphcs_: 41. create hphcs_: 59. 21 create_proc hphcs_: 59. 612 create_proc.e hphcs_: 59. 210 create_proc.t hphcs_: 59. 22 deactivate hphcs_: 60. 622 deactivate.e hphcs_: 60. 220 deactivate.t hphcs_: 60. deact_proc hphcs_: 72, 73. deconfigure hphcs_: 61. 23 deconfigure_fnp hphcs_: 61. 632 deconfigure_fnp.e hphcs_: 61. 230 deconfigure_fnp.t hphcs_: 61. 24 define_work_classes hphcs_: 62. 642 define_work_classes.e hphcs_: 62. 240 define_work_classes.t hphcs_: 62. 30 delentry_file hphcs_: 66. 702 delentry_file.e hphcs_: 66. 300 delentry_file.t hphcs_: 66. 31 delete_acl_entries hphcs_: 67. 713 delete_acl_entries.e hphcs_: 67. 310 delete_acl_entries.t hphcs_: 67. 32 delete_channel hphcs_: 68. 724 delete_channel.e hphcs_: 68. 320 delete_channel.t hphcs_: 68. 33 delete_dir_acl_entries hphcs_: 69. 734 delete_dir_acl_entries.e hphcs_: 69. 330 delete_dir_acl_entries.t hphcs_: 69. 34 delete_iom hphcs_: 70. 745 delete_iom.e hphcs_: 70. 340 delete_iom.t hphcs_: 70. 35 delete_vtoce hphcs_: 71. 755 delete_vtoce.e hphcs_: 71. 350 delete_vtoce.t hphcs_: 71. 25 del_cpu hphcs_: 63. 652 del_cpu.e hphcs_: 63. 250 del_cpu.t hphcs_: 63. 26 del_main hphcs_: 64. 662 del_main.e hphcs_: 64. 260 del_main.t hphcs_: 64. 27 del_scu hphcs_: 65. 672 del_scu.e hphcs_: 65. 270 del_scu.t hphcs_: 65. demand_deactivate hphcs_: 60. 36 destroy_process_begin hphcs_: 72. 765 destroy_process_begin.e hphcs_: 72. 360 destroy_process_begin.t hphcs_: 72. 37 destroy_process_finish hphcs_: 73. 775 destroy_process_finish.e hphcs_: 73. 370 destroy_process_finish.t hphcs_: 73. 40 dir_get_reset_quota hphcs_: 74. 1005 dir_get_reset_quota.e hphcs_: 74. 400 dir_get_reset_quota.t hphcs_: 74. 41 dir_quota_read hphcs_: 75. 1016 dir_quota_read.e hphcs_: 75. 410 dir_quota_read.t hphcs_: 75. 42 dir_quota_restor hphcs_: 76. 1027 dir_quota_restor.e hphcs_: 76. 420 dir_quota_restor.t hphcs_: 76. 43 dir_quota_set hphcs_: 77. 1040 dir_quota_set.e hphcs_: 77. 430 dir_quota_set.t hphcs_: 77. disk_control hphcs_: 78. 44 disk_tune hphcs_: 78. 1051 disk_tune.e hphcs_: 78. 440 disk_tune.t hphcs_: 78. dqlong_reset hphcs_: 74. dqrestor hphcs_: 76. dqset hphcs_: 77. 1174 entry_offset stack_header: 84. err_event_chan hphcs_: 97. fdump hphcs_: 79. 45 fdump_fnp hphcs_: 79. 1061 fdump_fnp.e hphcs_: 79. 450 fdump_fnp.t hphcs_: 79. flagbox_mgr hphcs_: 128, 132. 46 flush_ast_pool hphcs_: 80. 1071 flush_ast_pool.e hphcs_: 80. 460 flush_ast_pool.t hphcs_: 80. 47 flush_core hphcs_: 81. 1101 flush_core.e hphcs_: 81. 470 flush_core.t hphcs_: 81. fnp_util hphcs_: 53, 61, 79, 94, 169, 172. force hphcs_: 60. fs_get hphcs_: 82. 50 fs_get_trans_sw hphcs_: 82. 1111 fs_get_trans_sw.e hphcs_: 82. 500 fs_get_trans_sw.t hphcs_: 82. 5 gate_entry_data.calls hphcs_: 41, gate_data: 30. 0 gate_entry_data.cpu_time hphcs_: 41, gate_data: 27. 4 gate_entry_data.page_waits hphcs_: 41, gate_data: 29. 6 gate_entry_data.ring_alarms hphcs_: 41, gate_data: 31. 2 gate_entry_data.vcpu_time hphcs_: 41, gate_data: 28. 10 gate_entry_data_size hphcs_: 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, gate_data: 25. 2 gate_table.datap gate_data: 20. 1 gate_table.entryl gate_data: 19. 0 gate_table.entryp gate_data: 18. 3 gate_table_size gate_data: 15. 51 get_devx hphcs_: 83. 1121 get_devx.e hphcs_: 83. 510 get_devx.t hphcs_: 83. get_erf_no hphcs_: 84. 52 get_fdump_num hphcs_: 84. 1131 get_fdump_num.e hphcs_: 84. 520 get_fdump_num.t hphcs_: 84. get_input hphcs_: 96. 53 get_ipc_operands hphcs_: 85. 1141 get_ipc_operands.e hphcs_: 85. 530 get_ipc_operands.t hphcs_: 85. get_ipc_operands_priv hphcs_: 85. get_mc_output hphcs_: 98. get_privileges hphcs_: 87. 54 get_reset_quota hphcs_: 86. 1151 get_reset_quota.e hphcs_: 86. 540 get_reset_quota.t hphcs_: 86. 55 get_user_privileges hphcs_: 87. 1162 get_user_privileges.e hphcs_: 87. 550 get_user_privileges.t hphcs_: 87. given_processid hphcs_: 142. hc_tune hphcs_: 150. highly_privileged hphcs_: 134. 56 history_regs_get hphcs_: 88. 1172 history_regs_get.e hphcs_: 88. 560 history_regs_get.t hphcs_: 88. 57 history_regs_set hphcs_: 89. 1202 history_regs_set.e hphcs_: 89. 570 history_regs_set.t hphcs_: 89. history_reg_save hphcs_: 88, 89. hpriv_control hphcs_: 166. 60 init_channel hphcs_: 90. 1212 init_channel.e hphcs_: 90. 600 init_channel.t hphcs_: 90. 61 init_multiplexer hphcs_: 91. 1222 init_multiplexer.e hphcs_: 91. 610 init_multiplexer.t hphcs_: 91. io_reconfig hphcs_: 44, 47, 68, 70. 62 ips_wakeup hphcs_: 92. 1232 ips_wakeup.e hphcs_: 92. 620 ips_wakeup.t hphcs_: 92. 63 lct_init hphcs_: 93. 1242 lct_init.e hphcs_: 93. 630 lct_init.t hphcs_: 93. level_0_ hphcs_: 43, 46, 66, 67, 69, 118, 119, 130, 143. 10 linkage hphcs_: 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180. list_priv hphcs_: 154. load hphcs_: 94. 64 load_fnp hphcs_: 94. 1252 load_fnp.e hphcs_: 94. 640 load_fnp.t hphcs_: 94. 216 main hphcs_: 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 182. master_dir hphcs_: 50. mos_memory_check hphcs_: 139. move_seg_file hphcs_: 106. move_seg_seg hphcs_: 107. 204 new_syserr_copy_init hphcs_: 175. 2477 new_syserr_copy_init.e hphcs_: 175. 2040 new_syserr_copy_init.t hphcs_: 175. 205 new_syserr_info hphcs_: 176. 2507 new_syserr_info.e hphcs_: 176. 2050 new_syserr_info.t hphcs_: 176. 207 new_syserr_recovery hphcs_: 178. 2527 new_syserr_recovery.e hphcs_: 178. 2070 new_syserr_recovery.t hphcs_: 178. 210 new_syserr_reuse_log hphcs_: 179. 2537 new_syserr_reuse_log.e hphcs_: 179. 2100 new_syserr_reuse_log.t hphcs_: 179. 206 new_syserr_swap_logs hphcs_: 177. 2517 new_syserr_swap_logs.e hphcs_: 177. 2060 new_syserr_swap_logs.t hphcs_: 177. 211 new_syserr_verify_sequence hphcs_: 180. 2547 new_syserr_verify_sequence.e hphcs_: 180. 2110 new_syserr_verify_sequence.t hphcs_: 180. ocdcm_ hphcs_: 95, 96, 97, 98, 99, 100, 101, 102, 103, 104. 65 ocdcm_console_info hphcs_: 95. 1262 ocdcm_console_info.e hphcs_: 95. 650 ocdcm_console_info.t hphcs_: 95. 67 ocdcm_err_event_chan hphcs_: 97. 1302 ocdcm_err_event_chan.e hphcs_: 97. 670 ocdcm_err_event_chan.t hphcs_: 97. 66 ocdcm_get_input hphcs_: 96. 1272 ocdcm_get_input.e hphcs_: 96. 660 ocdcm_get_input.t hphcs_: 96. 70 ocdcm_get_mc_output hphcs_: 98. 1312 ocdcm_get_mc_output.e hphcs_: 98. 700 ocdcm_get_mc_output.t hphcs_: 98. 72 ocdcm_printer_off hphcs_: 100. 1332 ocdcm_printer_off.e hphcs_: 100. 720 ocdcm_printer_off.t hphcs_: 100. 73 ocdcm_printer_on hphcs_: 101. 1342 ocdcm_printer_on.e hphcs_: 101. 730 ocdcm_printer_on.t hphcs_: 101. 71 ocdcm_priority_io hphcs_: 99. 1322 ocdcm_priority_io.e hphcs_: 99. 710 ocdcm_priority_io.t hphcs_: 99. 74 ocdcm_queue_io hphcs_: 102. 1352 ocdcm_queue_io.e hphcs_: 102. 740 ocdcm_queue_io.t hphcs_: 102. 75 ocdcm_reconfigure hphcs_: 103. 1362 ocdcm_reconfigure.e hphcs_: 103. 750 ocdcm_reconfigure.t hphcs_: 103. 76 ocdcm_set_prompt hphcs_: 104. 1372 ocdcm_set_prompt.e hphcs_: 104. 760 ocdcm_set_prompt.t hphcs_: 104. 2 on_unit.body hphcs_: 182, on_unit: 5. 6 on_unit.file on_unit: 9. 10 on_unit.file_copy on_unit: 10. 5 on_unit.flags on_unit: 8. 0 on_unit.name hphcs_: 182, on_unit: 4. 5 on_unit.next on_unit: 7. 4 on_unit.size hphcs_: 182, on_unit: 6. other_process_info hphcs_: 87. page_waits hphcs_: 41. partition_io hphcs_: 116, 173. patch hphcs_: 121. pc hphcs_: 81. pds hphcs_: 41. per_system_get hphcs_: 88. per_system_set hphcs_: 89. poll hphcs_: 41. pre_empt_poll hphcs_: 41. pre_empt_poll_return hphcs_: 41. printer_off hphcs_: 100. printer_on hphcs_: 101. priority_io hphcs_: 99. priv_channel_manager hphcs_: 83, 90, 91, 93, 152, 155, 157, 164, 165, 166. priv_delete_vtoce hphcs_: 52, 71. priv_dqread hphcs_: 75. priv_mcs_trace hphcs_: 136, 137, 138. priv_qread hphcs_: 109. priv_read hphcs_: 116. priv_write hphcs_: 173. 77 process_status hphcs_: 105. 1402 process_status.e hphcs_: 105. 770 process_status.t hphcs_: 105. proc_info hphcs_: 135. 1171 push_offset stack_header: 81. 100 pv_move_file hphcs_: 106. 1412 pv_move_file.e hphcs_: 106. 1000 pv_move_file.t hphcs_: 106. 101 pv_move_seg hphcs_: 107. 1422 pv_move_seg.e hphcs_: 107. 1010 pv_move_seg.t hphcs_: 107. pxss hphcs_: 41, 141, 156. 102 pxss_set_timax hphcs_: 108. 1432 pxss_set_timax.e hphcs_: 108. 1020 pxss_set_timax.t hphcs_: 108. qlong_reset hphcs_: 86. qreload hphcs_: 110. qreset hphcs_: 111. qrestor hphcs_: 112. qset hphcs_: 113. queue_io hphcs_: 102. quota hphcs_: 74, 75, 76, 77, 86, 109, 110, 111, 112, 113. 103 quota_read hphcs_: 109. 1442 quota_read.e hphcs_: 109. 1030 quota_read.t hphcs_: 109. 104 quota_reload hphcs_: 110. 1453 quota_reload.e hphcs_: 110. 1040 quota_reload.t hphcs_: 110. 105 quota_reset hphcs_: 111. 1464 quota_reset.e hphcs_: 111. 1050 quota_reset.t hphcs_: 111. 106 quota_restor hphcs_: 112. 1475 quota_restor.e hphcs_: 112. 1060 quota_restor.t hphcs_: 112. 107 quota_set hphcs_: 113. 1506 quota_set.e hphcs_: 113. 1070 quota_set.t hphcs_: 113. quota_util hphcs_: 120, 160. 110 rc_force_unlock hphcs_: 114. 1517 rc_force_unlock.e hphcs_: 114. 1100 rc_force_unlock.t hphcs_: 114. 111 rc_unlock hphcs_: 115. 1527 rc_unlock.e hphcs_: 115. 1110 rc_unlock.t hphcs_: 115. 112 read_partition hphcs_: 116. 1537 read_partition.e hphcs_: 116. 1120 read_partition.t hphcs_: 116. reconfig hphcs_: 45, 48, 49, 63, 64, 65, 114, 115, 117. reconfigure hphcs_: 103. 113 reconfig_info hphcs_: 117. 1547 reconfig_info.e hphcs_: 117. 1130 reconfig_info.t hphcs_: 117. 114 replace_acl hphcs_: 118. 1557 replace_acl.e hphcs_: 118. 1140 replace_acl.t hphcs_: 118. 115 replace_dir_acl hphcs_: 119. 1570 replace_dir_acl.e hphcs_: 119. 1150 replace_dir_acl.t hphcs_: 119. 116 restore_quota hphcs_: 120. 1601 restore_quota.e hphcs_: 120. 1160 restore_quota.t hphcs_: 120. 1173 return_no_pop_offset stack_header: 83. 1172 return_offset stack_header: 82. reuse_empty_log hphcs_: 179. ring1 hphcs_: 161. ring1_binary hphcs_: 162. ring1_error_code hphcs_: 163. 117 ring_0_patch hphcs_: 121. 1611 ring_0_patch.e hphcs_: 121. 1170 ring_0_patch.t hphcs_: 121. ring_0_peek hphcs_: 121. ring_alarm hphcs_: 41. 120 salv_directory hphcs_: 122. 1621 salv_directory.e hphcs_: 122. 1200 salv_directory.t hphcs_: 122. scavenger hphcs_: 123. 121 scavenge_volume hphcs_: 123. 1631 scavenge_volume.e hphcs_: 123. 1210 scavenge_volume.t hphcs_: 123. segment_info hphcs_: 176. set hphcs_: 124, 125, 126, 127, 132, 133, 150. 122 set_auth hphcs_: 124. 1641 set_auth.e hphcs_: 124. 1220 set_auth.t hphcs_: 124. 123 set_backup_dump_time hphcs_: 125. 1652 set_backup_dump_time.e hphcs_: 125. 1230 set_backup_dump_time.t hphcs_: 125. 124 set_backup_times hphcs_: 126. 1663 set_backup_times.e hphcs_: 126. 1240 set_backup_times.t hphcs_: 126. 126 set_bce_command hphcs_: 128. 1705 set_bce_command.e hphcs_: 128. 1260 set_bce_command.t hphcs_: 128. 125 set_bc_auth hphcs_: 127. 1674 set_bc_auth.e hphcs_: 127. 1250 set_bc_auth.t hphcs_: 127. set_channel_trace hphcs_: 136. 127 set_cpu_monitor hphcs_: 129. 1716 set_cpu_monitor.e hphcs_: 129. 1270 set_cpu_monitor.t hphcs_: 129. 130 set_dir_ring_brackets hphcs_: 130. 1726 set_dir_ring_brackets.e hphcs_: 130. 1300 set_dir_ring_brackets.t hphcs_: 130. set_erf_no hphcs_: 131. 131 set_fdump_num hphcs_: 131. 1737 set_fdump_num.e hphcs_: 131. 1310 set_fdump_num.t hphcs_: 131. 132 set_flagbox hphcs_: 132. 1747 set_flagbox.e hphcs_: 132. 1320 set_flagbox.t hphcs_: 132. 133 set_for_reloader hphcs_: 133. 1760 set_for_reloader.e hphcs_: 133. 1330 set_for_reloader.t hphcs_: 133. set_global_trace hphcs_: 137. 134 set_kst_attributes hphcs_: 134. 1771 set_kst_attributes.e hphcs_: 134. 1340 set_kst_attributes.t hphcs_: 134. 135 set_mask_ring hphcs_: 135. 2001 set_mask_ring.e hphcs_: 135. 1350 set_mask_ring.t hphcs_: 135. 136 set_mcm_channel_trace hphcs_: 136. 2011 set_mcm_channel_trace.e hphcs_: 136. 1360 set_mcm_channel_trace.t hphcs_: 136. 137 set_mcm_global_trace hphcs_: 137. 2021 set_mcm_global_trace.e hphcs_: 137. 1370 set_mcm_global_trace.t hphcs_: 137. 140 set_mcm_trace_table_size hphcs_: 138. 2031 set_mcm_trace_table_size.e hphcs_: 138. 1400 set_mcm_trace_table_size.t hphcs_: 138. 141 set_mos_polling_time hphcs_: 139. 2041 set_mos_polling_time.e hphcs_: 139. 1410 set_mos_polling_time.t hphcs_: 139. 147 set_pdir_sons_lvid hphcs_: 145. 2123 set_pdir_sons_lvid.e hphcs_: 145. 1470 set_pdir_sons_lvid.t hphcs_: 145. 142 set_pit_tty_info hphcs_: 140. 2051 set_pit_tty_info.e hphcs_: 140. 1420 set_pit_tty_info.t hphcs_: 140. set_poll_time hphcs_: 139. 144 set_process_procs_required hphcs_: 142. 2071 set_process_procs_required.e hphcs_: 142. 1440 set_process_procs_required.t hphcs_: 142. 143 set_process_work_class hphcs_: 141. 2061 set_process_work_class.e hphcs_: 141. 1430 set_process_work_class.t hphcs_: 141. set_procs_required hphcs_: 142, 147. set_prompt hphcs_: 104. set_recovery_flag hphcs_: 178. 145 set_ring_brackets hphcs_: 143. 2101 set_ring_brackets.e hphcs_: 143. 1450 set_ring_brackets.t hphcs_: 143. 146 set_rpv hphcs_: 144. 2112 set_rpv.e hphcs_: 144. 1460 set_rpv.t hphcs_: 144. 150 set_sons_lvid hphcs_: 144, 145, 146. 2134 set_sons_lvid.e hphcs_: 146. 1500 set_sons_lvid.t hphcs_: 146. 151 set_system_procs_required hphcs_: 147. 2145 set_system_procs_required.e hphcs_: 147. 1510 set_system_procs_required.t hphcs_: 147. 153 set_system_time_zone hphcs_: 149. 2165 set_system_time_zone.e hphcs_: 149. 1530 set_system_time_zone.t hphcs_: 149. set_system_time_zone_ hphcs_: 149. 152 set_sys_audit_thresholds hphcs_: 148. 2155 set_sys_audit_thresholds.e hphcs_: 148. 1520 set_sys_audit_thresholds.t hphcs_: 148. set_sys_audit_thresholds_ hphcs_: 148. set_timax hphcs_: 108. set_trace_table_size hphcs_: 138. 154 set_tuning_parameter hphcs_: 150. 2175 set_tuning_parameter.e hphcs_: 150. 1540 set_tuning_parameter.t hphcs_: 150. set_work_class hphcs_: 141. 155 shutdown hphcs_: 151, 152. 2205 shutdown.e hphcs_: 151. 1550 shutdown.t hphcs_: 151. 156 shutdown_multiplexer hphcs_: 152. 2215 shutdown_multiplexer.e hphcs_: 152. 1560 shutdown_multiplexer.t hphcs_: 152. signal_ hphcs_: 41. 306 signal_arglist hphcs_: 41. 73 stach_header.trace_top_ptr stack_header: 62. 32 stack_frame.arg_ptr hphcs_: 182, stack_frame: 16. 100 stack_frame.condition_bit hphcs_: 182, stack_frame: 32. 20 stack_frame.condition_word stack_frame: 9. 2000 stack_frame.crawl_out_bit stack_frame: 28. 26 stack_frame.entry_ptr stack_frame: 13. 20 stack_frame.flag_word hphcs_: 182, stack_frame: 24. 400 stack_frame.link_trap_bit stack_frame: 30. 30 stack_frame.lp_ptr hphcs_: 41, stack_frame: 15. 20000 stack_frame.main_proc_bit stack_frame: 25. 60 stack_frame.min_length stack_frame: 23. 22 stack_frame.next_sp stack_frame: 10. 36 stack_frame.on_unit_rel_ptrs hphcs_: 182, stack_frame: 19. 30 stack_frame.operator_ptr stack_frame: 14. 37 stack_frame.operator_ret_ptr stack_frame: 20. 20 stack_frame.prev_sp hphcs_: 41, 182, stack_frame: 8. 40 stack_frame.regs stack_frame: 22. 24 stack_frame.return_ptr hphcs_: 41, stack_frame: 12. 10000 stack_frame.run_unit_manager stack_frame: 26. 1000 stack_frame.signaller_bit stack_frame: 29. 22 stack_frame.signaller_word stack_frame: 11. 4000 stack_frame.signal_bit stack_frame: 27. 34 stack_frame.static_ptr stack_frame: 17. 200 stack_frame.support_bit stack_frame: 31. 35 stack_frame.support_ptr stack_frame: 18. 37 stack_frame.translator_id stack_frame: 21. 66 stack_header.assign_linkage_ptr stack_header: 59. 32 stack_header.bar_mode_sp stack_header: 42. 36 stack_header.call_op_ptr stack_header: 44. 10 stack_header.clr_ptr stack_header: 27. 6 stack_header.combined_stat_ptr stack_header: 25. 4 stack_header.cpm_data_ptr stack_header: 24. 13 stack_header.cpm_enabled stack_header: 32. 13 stack_header.cur_lot_size stack_header: 31. 64 stack_header.ect_ptr stack_header: 58. 46 stack_header.entry_op_ptr stack_header: 49. 70 stack_header.heap_header_ptr stack_header: 60. 74 stack_header.in_trace stack_header: 63. 52 stack_header.isot_ptr stack_header: 52. 26 stack_header.lot_ptr stack_header: 39. 12 stack_header.main_proc_invoked stack_header: 29. 12 stack_header.max_lot_size stack_header: 28. 20 stack_header.parent_ptr stack_header: 36. 34 stack_header.pl1_operators_ptr stack_header: 43. 40 stack_header.push_op_ptr stack_header: 46. 42 stack_header.return_op_ptr stack_header: 47. 44 stack_header.ret_no_pop_op_ptr stack_header: 48. 62 stack_header.rnt_ptr stack_header: 57. 12 stack_header.run_unit_depth stack_header: 30. 54 stack_header.sct_ptr stack_header: 53. 30 stack_header.signal_ptr stack_header: 41. 22 stack_header.stack_begin_ptr hphcs_: 41, stack_header: 37. 24 stack_header.stack_end_ptr hphcs_: 41, stack_header: 38. 14 stack_header.system_free_ptr stack_header: 33. 60 stack_header.sys_link_info_ptr stack_header: 56. 72 stack_header.trace_frames stack_header: 61. 50 stack_header.trans_op_tv_ptr stack_header: 51. 56 stack_header.unwinder_ptr stack_header: 54. 16 stack_header.user_free_ptr stack_header: 34. 100 stack_header_end stack_header: 64. start hphcs_: 155, 156. start_copying hphcs_: 175. 161 start_multiplexer hphcs_: 155. 2247 start_multiplexer.e hphcs_: 155. 1610 start_multiplexer.t hphcs_: 155. 162 start_process hphcs_: 156. 2257 start_process.e hphcs_: 156. 1620 start_process.t hphcs_: 156. 157 star_ hphcs_: 153, 154. 2225 star_.e hphcs_: 153. 1570 star_.t hphcs_: 153. 160 star_list_ hphcs_: 154. 2236 star_list_.e hphcs_: 154. 1600 star_list_.t hphcs_: 154. star_priv hphcs_: 153. stop hphcs_: 157. 163 stop_multiplexer hphcs_: 157. 2267 stop_multiplexer.e hphcs_: 157. 1630 stop_multiplexer.t hphcs_: 157. 164 stop_process hphcs_: 158. 2277 stop_process.e hphcs_: 158. 1640 stop_process.t hphcs_: 158. stop_vacate hphcs_: 159. 165 stop_vacate_pv hphcs_: 159. 2307 stop_vacate_pv.e hphcs_: 159. 1650 stop_vacate_pv.t hphcs_: 159. 166 suspend_quota hphcs_: 160. 2317 suspend_quota.e hphcs_: 160. 1660 suspend_quota.t hphcs_: 160. swap_logs hphcs_: 177. 167 syserr hphcs_: 161. 2327 syserr.e hphcs_: 161. 1670 syserr.t hphcs_: 161. 170 syserr_binary hphcs_: 162. 2337 syserr_binary.e hphcs_: 162. 1700 syserr_binary.t hphcs_: 162. 171 syserr_error_code hphcs_: 163. 2347 syserr_error_code.e hphcs_: 163. 1710 syserr_error_code.t hphcs_: 163. syserr_real hphcs_: 161, 162, 163. syserr_seg_manager hphcs_: 175, 176, 177, 178, 179, 180. system_default hphcs_: 147. sys_info hphcs_: 41. tc hphcs_: 62, 168. tc_util hphcs_: 85, 92, 105, 108, 129. 172 terminate_channel hphcs_: 164. 2357 terminate_channel.e hphcs_: 164. 1720 terminate_channel.t hphcs_: 164. 173 terminate_multiplexer hphcs_: 165. 2367 terminate_multiplexer.e hphcs_: 165. 1730 terminate_multiplexer.t hphcs_: 165. 0 trace_frames.count stack_header: 69. 1 trace_frames.top_ptr stack_header: 70. 0 transfer_vector hphcs_: 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 175, 176, 177, 178, 179, 180, 182. trans_sw hphcs_: 82. 174 tty_control hphcs_: 166. 2377 tty_control.e hphcs_: 166. 1740 tty_control.t hphcs_: 166. tty_write hphcs_: 167. 175 tty_write_force hphcs_: 167. 2407 tty_write_force.e hphcs_: 167. 1750 tty_write_force.t hphcs_: 167. tune hphcs_: 78. 176 tune_work_class hphcs_: 168. 2417 tune_work_class.e hphcs_: 168. 1760 tune_work_class.t hphcs_: 168. 214 tv_end hphcs_: 41. 551 tv_offset stack_header: 75, 80, 81, 82, 83, 84. unwinder_ hphcs_: 182. unwire hphcs_: 169. 177 unwire_fnp hphcs_: 169. 2427 unwire_fnp.e hphcs_: 169. 1770 unwire_fnp.t hphcs_: 169. 200 user_wire hphcs_: 170. 2437 user_wire.e hphcs_: 170. 2000 user_wire.t hphcs_: 170. user_wire_seg hphcs_: 170. 201 vacate_pv hphcs_: 106, 107, 159, 171. 2447 vacate_pv.e hphcs_: 171. 2010 vacate_pv.t hphcs_: 171. verify_lock hphcs_: 182. verify_lock_bad_dir hphcs_: 182. verify_sequence hphcs_: 180. virtual_delta hphcs_: 41. wire hphcs_: 172. 202 wire_fnp hphcs_: 172. 2457 wire_fnp.e hphcs_: 172. 2020 wire_fnp.t hphcs_: 172. 203 write_partition hphcs_: 173. 2467 write_partition.e hphcs_: 173. 2030 write_partition.t hphcs_: 173. 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