COMPILATION LISTING OF SEGMENT !BBBJPhCHzkXgMq Compiled by: Multics PL/I Compiler, Release 28e, of February 14, 1985 Compiled at: Honeywell Multics Op. - System M Compiled on: 05/09/85 0954.0 mst Thu Options: table map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1985 * 4* * * 5* *********************************************************** */ 6 7 /* Definition of the message segment primitive operations (mseg_) */ 8 9 /* Created: April 1985 by G. Palter */ 10 11 /* format: style3,linecom */ 12 13 mseg_operations_: 14 procedure () options (variable); 15 16 17 declare 1 mops aligned, 18 2 (add_acl_entries_seg, add_message, chname_seg, close_seg, compact_seg, copy_seg_source, copy_seg_target, 19 count_messages, create_seg, delete_acl_entries_seg, delete_message, delete_seg, get_salvaged_flag_seg, 20 get_wakeup_state_seg, initiate_seg, list_acl_seg, list_acl_entries_seg, open_seg, read_message, 21 replace_acl_seg, reset_salvaged_flag_seg, reset_wakeup_state_seg, set_max_length_seg, 22 set_safety_switch_seg, set_wakeup_state_seg, update_message) 23 bit (36) aligned, 24 2 names (26) character (64) varying; 25 26 27 dcl 1 cds_data aligned like cds_args; 28 29 dcl code fixed binary (35); 30 dcl last_operation_id fixed binary (9); 31 32 dcl MSEG_OPERATIONS_ character (32) static options (constant) initial ("mseg_operations_"); 33 34 dcl error_table_$bigarg fixed binary (35) external; 35 dcl error_table_$out_of_bounds 36 fixed binary (35) external; 37 38 dcl com_err_ entry () options (variable); 39 dcl create_data_segment_ 40 entry (pointer, fixed binary (35)); 41 42 dcl (addr, currentsize, hbound, length, maxlength, null, string) 43 builtin; 44 45 /* Define the mseg_operations_$OPERATION and mseg_operations_$names constants */ 46 47 last_operation_id = 0; 48 49 call operation (mops.add_acl_entries_seg, "mseg_$add_acl_entries_seg", MSEG_REQUIRED_FOR_FS_INTERFACE, 50 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 51 52 call operation (mops.add_message, "mseg_$add_message", MSEG_REQUIRED_FOR_MESSAGE, 53 MSEG_BEGIN_FOR_MESSAGE | MSEG_INITIALIZE_HEADER, MSEG_FINISH_FOR_MESSAGE); 54 55 call operation (mops.chname_seg, "mseg_$chname_seg", MSEG_REQUIRE_PATHNAME | MSEG_REQUIRE_MSEG_PTR, 56 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 57 58 call operation (mops.close_seg, "mseg_$close_seg", MSEG_REQUIRE_MSEG_PTR | MSEG_REQUIRE_MSEG_INDEX, 59 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 60 61 call operation (mops.compact_seg, "mseg_$compact_seg", MSEG_REQUIRED_FOR_SEGMENT, MSEG_BEGIN_FOR_MESSAGE, 62 MSEG_FINISH_FOR_MESSAGE); /* compaction requires working with the individual messages */ 63 64 call operation (mops.copy_seg_source, "mseg_$copy_seg", MSEG_REQUIRED_FOR_SEGMENT, MSEG_BEGIN_FOR_MESSAGE, 65 MSEG_FINISH_FOR_MESSAGE); /* copying requires working with the individual messages */ 66 call operation (mops.copy_seg_target, "mseg_$copy_seg", MSEG_REQUIRED_FOR_SEGMENT, MSEG_LOCK_SEGMENT, 67 MSEG_FINISH_FOR_SEGMENT); 68 69 call operation (mops.count_messages, "mseg_$count_messages", MSEG_REQUIRE_MSEG_PTR | MSEG_REQUIRE_ACCESS_INFO, 70 MSEG_BEGIN_FOR_MESSAGE, MSEG_FINISH_FOR_MESSAGE); 71 /* there's no individual message for which we'd need info */ 72 73 call operation (mops.create_seg, "mseg_$create_seg", MSEG_REQUIRED_FOR_FS_INTERFACE, 74 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 75 76 call operation (mops.delete_acl_entries_seg, "mseg_$delete_acl_entries_seg", MSEG_REQUIRED_FOR_FS_INTERFACE, 77 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 78 79 call operation (mops.delete_message, "mseg_$delete_message", MSEG_REQUIRED_FOR_MESSAGE, MSEG_BEGIN_FOR_MESSAGE, 80 MSEG_FINISH_FOR_MESSAGE); 81 82 call operation (mops.delete_seg, "mseg_$delete_seg", MSEG_REQUIRE_MSEG_PTR, 83 MSEG_LOCK_SEGMENT | MSEG_DONT_CHECK_LOCK_RESULTS, MSEG_FINISH_FOR_FS_INTERFACE); 84 85 call operation (mops.get_salvaged_flag_seg, "mseg_$get_salvaged_flag_seg", MSEG_REQUIRED_FOR_SEGMENT, 86 MSEG_BEGIN_FOR_SEGMENT, MSEG_FINISH_FOR_SEGMENT); 87 88 call operation (mops.get_wakeup_state_seg, "mseg_$get_wakeup_state_seg", 89 MSEG_REQUIRED_FOR_SEGMENT | MSEG_REQUIRE_WAKEUP_STATE_VERSION, MSEG_BEGIN_FOR_SEGMENT, 90 MSEG_FINISH_FOR_SEGMENT); 91 92 call operation (mops.initiate_seg, "mseg_$initiate_seg", MSEG_REQUIRED_FOR_FS_INTERFACE, 93 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 94 95 call operation (mops.list_acl_seg, "mseg_$list_acl_seg", MSEG_REQUIRED_FOR_FS_INTERFACE, 96 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 97 98 call operation (mops.list_acl_entries_seg, "mseg_$list_acl_entries_seg", MSEG_REQUIRED_FOR_FS_INTERFACE, 99 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 100 101 call operation (mops.open_seg, "mseg_$open_seg", MSEG_REQUIRE_MSEG_PTR, MSEG_BEGIN_FOR_FS_INTERFACE, 102 MSEG_FINISH_FOR_FS_INTERFACE); 103 104 call operation (mops.read_message, "mseg_$read_message", MSEG_REQUIRED_FOR_MESSAGE, MSEG_BEGIN_FOR_MESSAGE, 105 MSEG_FINISH_FOR_MESSAGE); 106 107 call operation (mops.replace_acl_seg, "mseg_$replace_acl_seg", MSEG_REQUIRED_FOR_FS_INTERFACE, 108 MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 109 110 call operation (mops.reset_salvaged_flag_seg, "mseg_$reset_salvaged_flag_seg", 111 MSEG_REQUIRED_FOR_SEGMENT | MSEG_REQUIRE_ACCESS_INFO, MSEG_BEGIN_FOR_SEGMENT, MSEG_FINISH_FOR_SEGMENT); 112 113 call operation (mops.reset_wakeup_state_seg, "mseg_$reset_wakeup_state_seg", MSEG_REQUIRED_FOR_SEGMENT, 114 MSEG_BEGIN_FOR_SEGMENT, MSEG_FINISH_FOR_SEGMENT); 115 116 call operation (mops.set_max_length_seg, "mseg_$set_max_length_seg", MSEG_REQUIRED_FOR_SEGMENT, 117 MSEG_BEGIN_FOR_SEGMENT | MSEG_CHECK_COUNT_CONSISTENCY, MSEG_FINISH_FOR_SEGMENT); 118 119 call operation (mops.set_safety_switch_seg, "mseg_$set_safety_switch_seg", 120 MSEG_REQUIRE_PATHNAME | MSEG_REQUIRE_MSEG_PTR, MSEG_BEGIN_FOR_FS_INTERFACE, MSEG_FINISH_FOR_FS_INTERFACE); 121 122 call operation (mops.set_wakeup_state_seg, "mseg_$set_wakeup_state_seg", 123 MSEG_REQUIRED_FOR_SEGMENT | MSEG_REQUIRE_WAKEUP_STATE, MSEG_BEGIN_FOR_SEGMENT, MSEG_FINISH_FOR_SEGMENT); 124 125 call operation (mops.update_message, "mseg_$update_message", MSEG_REQUIRED_FOR_MESSAGE, MSEG_BEGIN_FOR_MESSAGE, 126 MSEG_FINISH_FOR_MESSAGE); 127 128 129 /* Create the data segment */ 130 131 cds_data.sections (1).p = addr (mops); 132 cds_data.sections (1).len = currentsize (mops); 133 cds_data.sections (1).struct_name = "mops"; 134 135 cds_data.seg_name = MSEG_OPERATIONS_; 136 cds_data.num_exclude_names = 0; 137 cds_data.exclude_array_ptr = null (); 138 string (cds_data.switches) = ""b; 139 cds_data.have_text = "1"b; 140 141 call create_data_segment_ (addr (cds_data), code); 142 if code ^= 0 143 then call com_err_ (code, MSEG_OPERATIONS_); 144 145 RETURN_FROM_MSEG_OPERATIONS_: 146 return; 147 148 /* Define a single operation */ 149 150 operation: 151 procedure (p_operation_value, p_operation_name, p_required_for_operation, p_begin_for_operation, 152 p_finish_for_operation); 153 154 dcl p_operation_value bit (36) aligned parameter; 155 dcl p_operation_name character (*) parameter; 156 dcl (p_required_for_operation, p_begin_for_operation, p_finish_for_operation) 157 bit (9) aligned parameter; 158 159 if last_operation_id >= hbound (mops.names, 1) 160 then do; 161 call com_err_ (error_table_$out_of_bounds, MSEG_OPERATIONS_, 162 "^/^5xIncrease the dimension of the mops.names array and recompile."); 163 go to RETURN_FROM_MSEG_OPERATIONS_; 164 end; 165 166 last_operation_id = last_operation_id + 1; 167 168 mseg_operation_data_ptr = addr (p_operation_value); 169 mseg_operation_data.operation_id = last_operation_id; 170 string (mseg_operation_data.required_data) = p_required_for_operation; 171 string (mseg_operation_data.begin_flags) = p_begin_for_operation; 172 string (mseg_operation_data.finish_flags) = p_finish_for_operation; 173 174 if length (p_operation_name) > maxlength (mops.names (last_operation_id)) 175 then do; 176 call com_err_ (error_table_$bigarg, MSEG_OPERATIONS_, 177 "Operation name ""^a"".^/^5xIncrease the maxlength of mops.names and recompile.", 178 p_operation_name); 179 go to RETURN_FROM_MSEG_OPERATIONS_; 180 end; 181 182 mops.names (last_operation_id) = p_operation_name; 183 184 return; 185 186 end operation; 187 188 /* format: off */ 189 /* BEGIN INCLUDE FILE ... mseg_operation_data.incl.pl1 */ 1 2 /* Created: April 1985 by G. Palter */ 1 3 1 4 /* format: style3,linecom */ 1 5 1 6 1 7 /* Description of a message segment primitive operation (mseg_) */ 1 8 1 9 declare 1 mseg_operation_data 1 10 aligned based (mseg_operation_data_ptr), 1 11 2 operation_id /* identifies which operation is being performed */ 1 12 fixed binary (9) unaligned unsigned, 1 13 2 required_data unaligned, /* which parts of mseg_operation must the caller supply */ 1 14 3 pathname bit (1) unaligned, 1 15 3 mseg_ptr bit (1) unaligned, 1 16 3 mseg_index bit (1) unaligned, 1 17 3 access_info bit (1) unaligned, 1 18 3 md_ptr bit (1) unaligned, 1 19 3 message_info bit (1) unaligned, 1 20 3 wakeup_state bit (1) unaligned, 1 21 3 wakeup_state_version 1 22 bit (1) unaligned, 1 23 3 pad bit (1) unaligned, 1 24 2 begin_flags unaligned, /* controls mseg_utils_$begin_operation ... */ 1 25 3 lock_segment bit (1) unaligned, /* ON => lock the segment */ 1 26 3 dont_check_lock_results /* ON => caller (delete_seg) will check that the lock is OK */ 1 27 bit (1) unaligned, 1 28 3 check_header_consistency /* ON => check that the header looks OK */ 1 29 bit (1) unaligned, 1 30 3 initialize_header /* ON => initialize the header if the segment's empty */ 1 31 bit (1) unaligned, 1 32 3 check_count_consistency /* ON => check that the message count and chains are OK */ 1 33 bit (1) unaligned, 1 34 3 pad bit (4) unaligned, 1 35 2 finish_flags unaligned, /* controls mseg_utils_$(finish abort)_operation */ 1 36 3 truncate_if_possible /* ON => truncate if the segment is empty */ 1 37 bit (1) unaligned, 1 38 3 already_salvaged /* ON => we've already tried to salvage this segment once */ 1 39 bit (1) unaligned, 1 40 3 unlock_segment /* ON => unlock the segment */ 1 41 bit (1) unaligned, 1 42 3 pad bit (6) unaligned; 1 43 1 44 declare mseg_operation_data_ptr 1 45 pointer; 1 46 1 47 1 48 /* Data in mseg_operations_ used only by mseg_utils_ */ 1 49 1 50 declare mseg_operations_$names 1 51 (26) character (64) varying external; 1 52 1 53 /* Named constants used in mseg_operations_.cds to build the above data structures */ 1 54 1 55 /* format: idind31 */ 1 56 1 57 declare ( 1 58 /*** Individual required fields */ 1 59 MSEG_REQUIRE_PATHNAME initial ("400"b3), 1 60 MSEG_REQUIRE_MSEG_PTR initial ("200"b3), 1 61 MSEG_REQUIRE_MSEG_INDEX initial ("100"b3), 1 62 MSEG_REQUIRE_ACCESS_INFO initial ("040"b3), 1 63 MSEG_REQUIRE_MD_PTR initial ("020"b3), 1 64 MSEG_REQUIRE_MESSAGE_INFO initial ("010"b3), 1 65 MSEG_REQUIRE_WAKEUP_STATE initial ("004"b3), 1 66 MSEG_REQUIRE_WAKEUP_STATE_VERSION 1 67 initial ("002"b3) 1 68 ) bit (9) aligned static options (constant); 1 69 1 70 declare ( 1 71 /*** Commonly used groupings of required fields */ 1 72 MSEG_REQUIRED_FOR_MESSAGE initial ("250"b3), /* mseg_ptr, access_info, message_info */ 1 73 MSEG_REQUIRED_FOR_SEGMENT initial ("200"b3), /* mseg_ptr */ 1 74 MSEG_REQUIRED_FOR_FS_INTERFACE initial ("400"b3) /* pathname */ 1 75 ) bit (9) aligned static options (constant); 1 76 1 77 declare ( 1 78 /*** Individual begin_operation flags */ 1 79 MSEG_LOCK_SEGMENT initial ("400"b3), 1 80 MSEG_DONT_CHECK_LOCK_RESULTS initial ("200"b3), 1 81 MSEG_CHECK_HEADER_CONSISTENCY initial ("100"b3), 1 82 MSEG_INITIALIZE_HEADER initial ("040"b3), 1 83 MSEG_CHECK_COUNT_CONSISTENCY initial ("020"b3) 1 84 ) bit (9) aligned static options (constant); 1 85 1 86 declare ( 1 87 /*** Commonly used groupings of begin_operation flags */ 1 88 MSEG_BEGIN_FOR_MESSAGE initial ("520"b3), /* lock, check header, check count */ 1 89 MSEG_BEGIN_FOR_SEGMENT initial ("500"b3), /* lock, check header */ 1 90 MSEG_BEGIN_FOR_FS_INTERFACE initial ("000"b3) /* no actions need be taken */ 1 91 ) bit (9) aligned static options (constant); 1 92 1 93 declare ( 1 94 /*** Individual finish_operation flags */ 1 95 MSEG_TRUNCATE_IF_POSSIBLE initial ("400"b3), 1 96 MSEG_ALREADY_SALVAGED initial ("200"b3), 1 97 MSEG_UNLOCK_SEGMENT initial ("100"b3) 1 98 ) bit (9) aligned static options (constant); 1 99 1 100 declare ( 1 101 /*** Commonly used groupings of finish_operation flags */ 1 102 MSEG_FINISH_FOR_MESSAGE initial ("400"b3), /* truncate if possible */ 1 103 MSEG_FINISH_FOR_SEGMENT initial ("400"b3), /* truncate if possible */ 1 104 MSEG_FINISH_FOR_FS_INTERFACE initial ("000"b3) /* no actions need be taken */ 1 105 ) bit (9) aligned static options (constant); 1 106 1 107 /* END INCLUDE FILE ... mseg_operation_data.incl.pl1 */ 189 190 /* BEGIN INCLUDE FILE cds_args.incl.pl1 */ 2 2 2 3 dcl 1 cds_args based aligned, 2 4 2 sections (2), 2 5 3 p ptr, /* pointer to data for text/static section */ 2 6 3 len fixed bin (18), /* size of text/static section */ 2 7 3 struct_name char (32), /* name of declared structure for this section */ 2 8 2 seg_name char (32), /* name to create segment by */ 2 9 2 num_exclude_names fixed bin, /* number of names in exclude array */ 2 10 2 exclude_array_ptr ptr, /* pointer to array of exclude names */ 2 11 2 switches, /* control switches */ 2 12 3 defs_in_link bit (1) unal, /* says put defs in linkage */ 2 13 3 separate_static bit (1) unal, /* says separate static section is wanted */ 2 14 3 have_text bit (1) unal, /* ON if text sectMultics  ? L^MRMX.25ASCII_CRT_E L^*eFBNg Bdp  BNg CDC L}L9u[X.25ASCII_CRT_E L@'tCurry <P <P Curry NMLPROD  QjF$g constant bit(9) initial dcl 1-57 ref 88 add_acl_entries_seg 000100 automatic bit(36) level 2 dcl 17 set ref 49* add_message 1 000100 automatic bit(36) level 2 dcl 17 set ref 52* addr builtin function dcl 42 ref 131 141 141 168 begin_flags 0(18) based structure level 2 packed unaligned dcl 1-9 set ref 171* cds_args based structure level 1 dcl 2-3 cds_data 001024 automatic structure level 1 dcl 27 set ref 141 141 chname_seg 2 000100 automatic bit(36) level 2 dcl 17 set ref 55* close_seg 3 000100 automatic bit(36) level 2 dcl 17 set ref 58* code 001071 automatic fixed bin(35,0) dcl 29 set ref 141* 142 142* com_err_ 000016 constant entry external dcl 38 ref 142 161 176 compact_seg 4 000100 automatic bit(36) level 2 dcl 17 set ref 61* copy_seg_source 5 000100 automatic bit(36) level 2 dcl 17 set ref 64* copy_seg_target 6 000100 automatic bit(36) level 2 dcl 17 set ref 66* count_messages 7 000100 automatic bit(36) level 2 dcl 17 set ref 69* create_data_segment_ 000020 constant entry external dcl 39 ref 141 create_seg 10 000100 automatic bit(36) level 2 dcl 17 set ref 73* currentsize builtin function dcl 42 ref 132 delete_acl_entries_seg 11 000100 automatic bit(36) level 2 dcl 17 set ref 76* delete_message 12 000100 automatic bit(36) level 2 dcl 17 set ref 79* delete_seg 13 000100 automatic bit(36) level 2 dcl 17 set ref 82* error_table_$bigarg 000012 external static fixed bin(35,0) dcl 34 set ref 176* error_table_$out_of_bounds 000014 external static fixed bin(35,0) dcl 35 set ref 161* exclude_array_ptr 42 001024 automatic pointer level 2 dcl 27 set ref 137* finish_flags 0(27) based structure level 2 packed unaligned dcl 1-9 set ref 172* get_salvaged_flag_seg 14 000100 automatic bit(36) level 2 dcl 17 set ref 85* get_wakeup_state_seg 15 000100 automatic bit(36) level 2 dcl 17 set ref 88* have_text 44(02) 001024 automatic bit(1) level 3 packed unaligned dcl 27 set ref 139* hbound builtin function dcl 42 ref 159 initiate_seg 16 000100 automatic bit(36) level 2 dcl 17 set ref 92* last_operation_id 001072 automatic fixed bin(9,0) dcl 30 set ref 47* 159 166* 166 169 174 182 len 2 001024 automatic fixed bin(18,0) array level 3 dcl 27 set ref 132* length builtin function dcl 42 ref 174 list_acl_entries_seg 20 000100 automatic bit(36) level 2 dcl 17 set ref 98* list_acl_seg 17 000100 automatic bit(36) level 2 dcl 17 set ref 95* maxlength builtin function dcl 42 ref 174 mops 000100 automatic structure level 1 dcl 17 set ref 131 132 mseg_operation_data based structure level 1 dcl 1-9 mseg_operation_data_ptr 001074 automatic pointer dcl 1-44 set ref 168* 169 170 171 172 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 1-9 names 32 000100 automatic varying char(64) array level 2 dcl 17 set ref 159 174 182* null builtin function dcl 42 ref 137 num_exclude_names 40 001024 automatic fixed bin(17,0) level 2 dcl 27 set ref 136* open_seg 21 000100 automatic bit(36) level 2 dcl 17 set ref 101* operation_id based fixed bin(9,0) level 2 packed unsigned unaligned dcl 1-9 set ref 169* p 001024 automatic pointer array level 3 dcl 27 set ref 131* p_begin_for_operation parameter bit(9) dcl 156 ref 150 171 p_finish_for_operation parameter bit(9) dcl 156 ref 150 172 p_operation_name parameter char unaligned dcl 155 set ref 150 174 176* 182 p_operation_value parameter bit(36) dcl 154 set ref 150 168 p_required_for_operation parameter bit(9) dcl 156 ref 150 170 read_message 22 000100 automatic bit(36) level 2 dcl 17 set ref 104* replace_acl_seg 23 000100 automatic bit(36) level 2 dcl 17 set ref 107* required_data 0(09) based structure level 2 packed unaligned dcl 1-9 set ref 170* reset_salvaged_flag_seg 24 000100 automatic bit(36) level 2 dcl 17 set ref 110* reset_wakeup_state_seg 25 000100 automatic bit(36) level 2 dcl 17 set ref 113* sections 001024 automatic structure array level 2 dcl 27 seg_name 30 001024 automatic char(32) level 2 dcl 27 set ref 135* set_max_length_seg 26 000100 automatic bit(36) level 2 dcl 17 set ref 116* set_safety_switch_seg 27 000100 automatic bit(36) level 2 dcl 17 set ref 119* set_wakeup_state_seg 30 000100 automatic bit(36) level 2 dcl 17 set ref 122* string builtin function dcl 42 set ref 138* 170* 171* 172* struct_name 3 001024 automatic char(32) array level 3 dcl 27 set ref 133* switches 44 001024 automatic structure level 2 dcl 27 set ref 138* update_message 31 000100 automatic bit(36) level 2 dcl 17 set ref 125* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. MSEG_ALREADY_SALVAGED constant bit(9) initial dcl 1-93 MSEG_CHECK_HEADER_CONSISTENCY constant bit(9) initial dcl 1-77 MSEG_REQUIRE_MESSAGE_INFO constant bit(9) initial dcl 1-57 MSEG_TRUNCATE_IF_POSSIBLE constant bit(9) initial dcl 1-93 MSEG_UNLOCK_SEGMENT constant bit(9) initial dcl 1-93 exclude_names based char(32) array unaligned dcl 2-18 mseg_operations_$names 000022 external static varying char(64) array dcl 1-50 NAMES DECLARED BY EXPLICIT CONTEXT. RETURN_FROM_MSEG_OPERATIONS_ 000736 constant label dcl 145 set ref 163 179 mseg_operations_ 000333 constant entry external dcl 13 operation 000737 constant entry internal dcl 150 ref 49 52 55 58 61 64 66 69 73 76 79 82 85 88 92 95 98 101 104 107 110 113 116 119 122 125 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 2272 2316 2170 2302 Length 5412 2170 24 3057 101 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME mseg_operations_ 680 external procedure is an external procedure. operation internal procedure shares stack frame of external procedure mseg_operations_. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME mseg_operations_ 000100 mops mseg_operations_ 001024 cds_data mseg_operations_ 001071 code mseg_operations_ 001072 last_operation_id mseg_operations_ 001074 mseg_operation_data_ptr mseg_operations_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_ create_data_segment_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. error_table_$bigarg error_table_$out_of_bounds mseg_operations_$names LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 13 000332 47 000340 49 000341 52 000347 55 000360 58 000372 61 000404 64 000415 66 000424 69 000433 73 000444 76 000453 79 000461 82 000472 85 000504 88 000512 92 000523 95 000531 98 000542 101 000550 104 000557 107 000565 110 000576 113 000607 116 000615 119 000631 122 000642 125 000653 131 000664 132 000666 133 000670 135 000673 136 000676 137 000677 138 000701 139 000702 141 000704 142 000717 145 000736 150 000737 159 000750 161 000753 163 000777 166 001000 168 001001 169 001004 170 001007 171 001012 172 001015 174 001020 176 001023 179 001054 182 001055 184 001072 Object Segment >spec>on>mseg>mseg_operations_ Created on 05/09/85 0954.7 mst Thu by GJohnson.SysMaint.a using create_data_segment_, Version II of Friday, November 30, 1984 Object Text Defs Link Symb Static Start 0 0 724 1254 1264 1264 Length 1531 724 330 10 231 0 29 Definitions: segname: mseg_operations_ text|0 add_acl_entries_seg text|1 add_message text|2 chname_seg text|3 close_seg text|4 compact_seg text|5 copy_seg_source text|6 copy_seg_target text|7 count_messages text|10 create_seg text|11 delete_acl_entries_seg text|12 delete_message text|13 delete_seg text|14 get_salvaged_flag_seg text|15 get_wakeup_state_seg text|16 initiate_seg text|20 list_acl_entries_seg text|17 list_acl_seg text|32 names text|21 open_seg text|22 read_message text|23 replace_acl_seg text|24 reset_salvaged_flag_seg text|25 reset_wakeup_state_seg text|26 set_max_length_seg text|27 set_safety_switch_seg text|30 set_wakeup_state_seg symb|0 symbol_table text|31 update_message No Links.