COMPILATION LISTING OF SEGMENT gtss_CFP_output_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1149.8 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * * 4* * Copyright, (C) Honeywell Information Systems Inc., 1981 * 5* * * 6* * * 7* *********************************************************** */ 8 9 gtss_CFP_output_: proc (up, bp, rl, ec); 10 11 /** This program is called to do all output when doing 12* CRUN/DRUN processing. Depending on the modes in 13* effect as a result of processing $*$ requests, the 14* appropriate output actions are performed. 15* 16* Author: Al Dupuis 05/05/79. 17* Changed: Ron Barstad 83-03-31 Fixed size of substr on debub output to rl, was rl-1 18* Changed: Ron Barstad 84-11-29 Start off by setting error code to zero. 19* 20* ACTION MEANING 21* 22* action_1 terminal write 23* action_2 *CFP write 24* action_3 terminal write, *CFP write 25* action_4 no write 26* action_5 terminal write, terminal write 27* 28* 29* 30* DELE_ON COPY_ON TALK_ON ACTION 31* 32* 0 0 0 action_2 33* 0 0 1 action_3 34* 0 1 0 action_3 35* 0 1 1 action_3 36* 1 0 0 action_4 37* 1 0 1 action_1 38* 1 1 0 action_1 39* 1 1 1 action_5 40* 41* 42***/ 43 /** **/ 44 45 ec = 0; 46 rtn_bits = "0"b || dele_on || copy_on || talk_on; 47 proper_rtn = rtn_table (fixed (rtn_bits, 4)); 48 call proper_rtn; 49 if db_CFP_input then call ioa_ ( 50 "output sector no was (^d)" 51 || " no of chars written was (^d)" 52 || "^/chars written were (^a)", 53 gtss_ust.lcfio.sect_out - 1, 54 rl, 55 substr (RECORD.chars, 1, rl)); 56 57 58 /** 59***/ 60 action_1: proc; 61 62 call iox_$put_chars (iox_$user_output, bp, rl, ec); 63 if ec ^= 0 then call bug_complaint; 64 end /* action_1 */; 65 /** 66***/ 67 action_2: proc; 68 69 call gtss_write_starCFP_ (up, bp, rl, ec); 70 if ec ^= 0 then call bug_complaint; 71 end /* action_2 */; 72 /** 73***/ 74 action_3: proc; 75 76 call iox_$put_chars (iox_$user_output, bp, rl, ec); 77 if ec = 0 then 78 call gtss_write_starCFP_ (up, bp, rl, code); 79 if code ^= 0 | ec ^= 0 then call bug_complaint; 80 81 end /* action_3 */; 82 /** **/ 83 84 action_4: proc; 85 86 end /* action_4 (very quick proc) */; 87 /** **/ 88 action_5: proc; 89 90 call iox_$put_chars (iox_$user_output, bp, rl, ec); 91 if ec = 0 then 92 call iox_$put_chars (iox_$user_output, bp, rl, code); 93 if code ^= 0 | ec ^= 0 then call bug_complaint; 94 95 end /* action_5 */; 96 /** **/ 97 98 bug_complaint: proc; 99 100 101 gtss_ust.lcfst.start_term = 2; 102 call gtss_abort_subsystem_ ( 103 gtss_find_cond_frame_ ("derail"), 104 "gtss_CFP_output_", 105 0, 106 "Encountered a bad i/o to terminal or *CFP"); 107 return; 108 end /* bug_complaint */; 109 /** **/ 110 111 112 /* Variables for gtss_CFP_output_ 113**/ 114 115 dcl ioa_ entry options (variable); 116 dcl iox_$get_line entry (ptr, ptr, fixed bin (21), fixed bin (21), fixed bin (35)); 117 dcl iox_$put_chars entry (ptr, ptr, fixed bin (21), fixed bin (35)); 118 dcl iox_$user_input ptr ext; 119 dcl iox_$user_output ptr ext; 120 dcl up ptr parm /* (NOT USED. Needed for iox_ compatibility). */; 121 dcl bp ptr parm /* (input) Callers buffer. */; 122 dcl rl fixed bin(21)parm /* (output) Number characters returned. */; 123 dcl ec fixed bin(35)parm /* (output) Multics error code. */; 124 dcl code fixed bin (35) init (0); 125 dcl (null, fixed) builtin; 126 dcl proper_rtn entry int variable; 127 dcl rtn_table (0:7) entry init ( 128 action_2, 129 action_3, 130 action_3, 131 action_3, 132 action_4, 133 action_1, 134 action_1, 135 action_5); 136 /** */ 137 1 1 /* BEGIN INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 1 2 /* 1 3* Created: (Wardd Multics) 06/30/78 1624.8 mst Fri 1 4* Modified: Ron Barstad 84-02-24 Fixed wrong and obsolete entries 1 5**/ 1 6 1 7 /** gtss external entry variables. **/ 1 8 dcl com_err_ entry() options(variable); 1 9 dcl gtss_CFP_abort_ entry options(variable); 1 10 dcl gtss_CFP_break_ entry options(variable); 1 11 dcl gtss_CFP_input_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 1 12 dcl gtss_CFP_output_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 1 13 dcl gtss_abandon_CFP_ entry options(variable); 1 14 dcl gtss_abort_dump_ entry (fixed bin(18)); 1 15 dcl gtss_abort_subsystem_ entry options (variable); 1 16 dcl gtss_abort_subsystem_$not_imp entry (ptr, fixed bin(24)); 1 17 dcl gtss_abs_login_banner_ entry() returns(char(*)); 1 18 dcl gtss_abs_logout_banner_ entry() returns(char(*)); 1 19 dcl gtss_abs_$abs_equiv entry options(variable); 1 20 dcl gtss_abs_$cpu_runout entry (ptr, char(4)); 1 21 dcl gtss_abs_$create_absin entry() returns(char(*)); 1 22 dcl gtss_abs_$dabt_check entry (ptr, char(4)); 1 23 dcl gtss_abs_$get_id entry (char(5)) returns(char(19)); 1 24 dcl gtss_abs_$get_drm entry() returns(char(*)); 1 25 dcl gtss_adjust_size_ entry (ptr); 1 26 dcl gtss_aft_$add entry (char(8), fixed bin(24), fixed bin(35)); 1 27 dcl gtss_aft_$delete entry (char(8), fixed bin(24), fixed bin(35)); 1 28 dcl gtss_aft_$find entry (char(8), fixed bin(24), fixed bin(35)); 1 29 dcl gtss_aft_$initialize entry (fixed bin(35)); 1 30 dcl gtss_ascii_bcd_ entry (ptr, fixed bin, ptr); 1 31 dcl gtss_attributes_mgr_$get entry (ptr, fixed bin(35)); 1 32 dcl gtss_attributes_mgr_$set entry (ptr, fixed bin(35)); 1 33 dcl gtss_bcd_ascii_ entry (ptr, fixed bin(24), ptr); 1 34 dcl gtss_bcd_ascii_$lc entry (ptr, fixed bin(24), ptr); 1 35 dcl gtss_break_vector_ entry (); 1 36 dcl gtss_break_vector_$drl_in_progress entry() returns(bit(1)); 1 37 dcl gtss_break_vector_$status entry() returns(bit(1)); 1 38 dcl gtss_build_ entry options(variable); 1 39 dcl gtss_com_err_ entry options(variable); 1 40 dcl gtss_derail_processor_ entry (ptr, char(*), ptr, ptr, bit(1) aligned) /* called at fault time instead of signal_ */; 1 41 dcl gtss_derail_processor_$set entry options(variable); 1 42 dcl gtss_dq_$catp entry (char (5), ptr, fixed bin (18) unsigned); 1 43 dcl gtss_dq_$create entry (bit(1)); 1 44 dcl gtss_dq_$dibp entry (char(5), ptr); 1 45 dcl gtss_dq_$entries_info entry (ptr, fixed bin (18) unsigned, fixed bin (18) unsigned); 1 46 dcl gtss_dq_$hdrp entry (ptr); 1 47 dcl gtss_dq_$mod_js entry (char(5), fixed bin (6) unsigned, bit (1)); 1 48 dcl gtss_dq_$open_exc entry (bit(1)); 1 49 dcl gtss_dq_$open_gen entry (bit(1)); 1 50 dcl gtss_drl_abort_ entry (ptr, fixed bin); 1 51 dcl gtss_drl_addmem_ entry (ptr, fixed bin); 1 52 dcl gtss_drl_callss_ entry (ptr, fixed bin); 1 53 dcl gtss_drl_corfil_ entry (ptr, fixed bin); 1 54 dcl gtss_drl_defil_ entry (ptr, fixed bin); 1 55 dcl gtss_drl_defil_$subr entry (ptr, ptr, ptr); 1 56 dcl gtss_drl_dio_ entry (ptr, fixed bin); 1 57 dcl gtss_drl_drlimt_ entry (ptr, fixed bin); 1 58 dcl gtss_drl_drlsav_ entry (ptr, fixed bin); 1 59 dcl gtss_drl_filact_ entry (ptr, fixed bin); 1 60 dcl gtss_drl_filsp_ entry (ptr, fixed bin); 1 61 dcl gtss_drl_grow_ entry (ptr, fixed bin); 1 62 dcl gtss_drl_gwake_ entry (ptr, fixed bin); 1 63 dcl gtss_drl_jsts_ entry (ptr, fixed bin); 1 64 dcl gtss_drl_kin_ entry (ptr, fixed bin); 1 65 dcl gtss_drl_kotnow_ entry (ptr, fixed bin); 1 66 dcl gtss_drl_kotnow_$gtss_drl_kout_ entry (ptr, fixed bin); 1 67 dcl gtss_drl_koutn_ entry (ptr, fixed bin); 1 68 dcl gtss_drl_morlnk_ entry (ptr, fixed bin); 1 69 dcl gtss_drl_msub_ entry (ptr, fixed bin); 1 70 dcl gtss_drl_objtim_ entry (ptr, fixed bin); 1 71 dcl gtss_drl_part_ entry (ptr, fixed bin); 1 72 dcl gtss_drl_pasaft_ entry (ptr, fixed bin); 1 73 dcl gtss_drl_pasdes_ entry (ptr, fixed bin); 1 74 dcl gtss_drl_pasust_ entry (ptr, fixed bin); 1 75 dcl gtss_drl_pdio_ entry (ptr, fixed bin); 1 76 dcl gtss_drl_prgdes_ entry (ptr, fixed bin); 1 77 dcl gtss_drl_pseudo_ entry (ptr, fixed bin); 1 78 dcl gtss_drl_relmem_ entry (ptr, fixed bin); 1 79 dcl gtss_drl_restor_ entry (ptr, fixed bin); 1 80 dcl gtss_drl_retfil_ entry (ptr, fixed bin); 1 81 dcl gtss_drl_return_ entry (ptr, fixed bin); 1 82 dcl gtss_drl_rew_ entry (ptr, fixed bin); 1 83 dcl gtss_drl_rstswh_ entry (ptr, fixed bin); 1 84 dcl gtss_drl_setlno_ entry (ptr, fixed bin); 1 85 dcl gtss_drl_setswh_ entry (ptr, fixed bin); 1 86 dcl gtss_drl_snumb_ entry (ptr, fixed bin); 1 87 dcl gtss_drl_spawn_ entry (ptr, fixed bin); 1 88 dcl gtss_drl_spawn_$gtss_drl_pasflr_ entry (ptr, fixed bin); 1 89 dcl gtss_drl_stoppt_ entry (ptr, fixed bin); 1 90 dcl gtss_drl_switch_ entry (ptr, fixed bin); 1 91 dcl gtss_drl_sysret_ entry (ptr, fixed bin); 1 92 dcl gtss_drl_t_cfio_ entry (ptr, fixed bin); 1 93 dcl gtss_drl_t_cmov_ entry (ptr, fixed bin); 1 94 dcl gtss_drl_t_err_ entry (ptr, fixed bin); 1 95 dcl gtss_drl_t_goto_ entry (ptr, fixed bin); 1 96 dcl gtss_drl_t_linl_ entry (ptr, fixed bin); 1 97 dcl gtss_drl_t_rscc_ entry (ptr, fixed bin); 1 98 dcl gtss_drl_tapein_ entry (ptr, fixed bin); 1 99 dcl gtss_drl_task_ entry (ptr, fixed bin); 1 100 dcl gtss_drl_termtp_ entry (ptr, fixed bin); 1 101 dcl gtss_drl_time_ entry (ptr, fixed bin); 1 102 dcl gtss_drun_ entry (bit(1)); 1 103 dcl gtss_dsd_lookup_ entry (char(8) var) returns(fixed bin(24)); 1 104 dcl gtss_dsd_process_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 1 105 dcl gtss_edit_dsd_ entry (ptr, fixed bin(21)) returns(fixed bin(24)); 1 106 dcl gtss_mcfc_empty entry (char(*) var); 1 107 dcl gtss_expand_pathname_ entry (ptr, char(*), char(*), fixed bin(35)); 1 108 dcl gtss_expand_pathname_$verify_umc entry (ptr, char(*), char(*), bit(18), fixed bin(35)); 1 109 dcl gtss_fault_processor_ entry options(variable); 1 110 dcl gtss_find_cond_frame_ entry (char(32) var) returns(ptr); 1 111 dcl gtss_fault_processor_$timer_runout entry (ptr, char(*)); 1 112 dcl gtss_filact_error_status_ entry (fixed bin(35))returns(bit(12)); 1 113 dcl gtss_filact_funct02_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 114 dcl gtss_filact_funct03_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 115 dcl gtss_filact_funct04_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 116 dcl gtss_filact_funct05_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 117 dcl gtss_filact_funct08_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 118 dcl gtss_filact_funct10_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 119 dcl gtss_filact_funct11_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 120 dcl gtss_filact_funct14_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 121 dcl gtss_filact_funct18_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 122 dcl gtss_filact_funct19_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 123 dcl gtss_filact_funct21_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 124 dcl gtss_filact_funct22_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 1 125 dcl gtss_mcfc_init_ entry (char(*) var); 1 126 dcl gtss_interp_prim_ entry options(variable); 1 127 dcl gtss_interp_prim_$callss entry (char(4), ptr); 1 128 dcl gtss_interp_prim_$sysret entry options(variable); 1 129 dcl gtss_interp_prim_$t_goto entry (char(4)); 1 130 dcl gtss_ios_change_size_ entry (fixed bin(24), fixed bin(24), bit(1), fixed bin(24), fixed bin(35)); 1 131 dcl gtss_ios_close_ entry (fixed bin(24), ptr, fixed bin(35)); 1 132 dcl gtss_ios_exchange_names_ entry (fixed bin(24), fixed bin(24), fixed bin(24), fixed bin(35)); 1 133 dcl gtss_ios_initialize_ entry options(variable); 1 134 dcl gtss_ios_io_ entry (fixed bin(24), ptr, ptr, fixed bin(24), fixed bin(24), fixed bin(35)); 1 135 dcl gtss_ios_open_ entry (fixed bin(24), char(168), char(32), bit(6), bit(1), ptr, ptr, fixed bin(35)); 1 136 dcl gtss_ios_position_ entry (fixed bin(24), fixed bin(24), fixed bin(24), bit(6), ptr); 1 137 dcl gtss_mcfc_$delete entry (fixed bin(24), char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 1 138 dcl gtss_mcfc_$open entry (char(*), char(*), bit(6), bit(36) aligned, ptr, fixed bin(35)); 1 139 dcl gtss_mcfc_$close entry (char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 1 140 dcl gtss_read_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 1 141 dcl gtss_read_starCFP_$last_os entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 1 142 dcl gtss_run_subsystem_ entry (fixed bin(24)); 1 143 dcl gtss_run_subsystem_$finish entry options(variable); 1 144 dcl gtss_run_subsystem_$restor entry (fixed bin(24), ptr); 1 145 dcl gtss_run_subsystem_$restor_perm entry (fixed bin(24), ptr, fixed bin(18)); 1 146 dcl gtss_set_slave_ entry (fixed bin (24), ptr); 1 147 dcl gtss_set_slave_$load_bar entry (fixed bin (17)); 1 148 dcl gtss_update_safe_store_ entry (ptr); 1 149 dcl gtss_verify_access_ entry (char(*), char(*), fixed bin(24), bit(6), bit(12) aligned); 1 150 dcl gtss_verify_access_$check_forced_access entry (char(*), char(*), fixed bin(24)); 1 151 dcl gtss_write_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 1 152 /* END INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 138 139 /** **/ 2 1 /* BEGIN INCLUDE FILE gtss_CFP_bits.incl.pl1 */ 2 2 /* 2 3* Created: (Dupuis Multics) 05/08/79 1031.7 mst Tue 2 4**/ 2 5 2 6 2 7 dcl CFP_in_progress bit (1) unaligned defined lflg2.b8; 2 8 dcl dele_on bit (1) unaligned defined lflg2.b0; 2 9 dcl copy_on bit (1) unaligned defined lflg2.b1; 2 10 dcl talk_on bit (1) unaligned defined lflg2.b4; 2 11 dcl user_code bit (1) unaligned defined lflg2.b14; 2 12 dcl trap_off bit (1) unaligned defined lswt2.b5; 2 13 dcl break_flag bit (1) unaligned defined lflg3.b31; 2 14 2 15 2 16 /* END INCLUDE FILE gtss_CFP_bits.incl.pl1 */ 140 141 /** **/ 3 1 /* BEGIN INCLUDE FILE gtss_starCF_.incl.pl1 */ 3 2 /* 3 3* Created: (Wardd Multics) 03/20/79 1816.6 mst Tue 3 4**/ 3 5 3 6 /* 3 7* gtss_CFP_input_ data structure to provide 3 8* for accessing the current command file. 3 9* 3 10* Changed: Al Dupuis 05/17/79 to get rid of nested get_line, put_chars concept. 3 11**/ 3 12 dcl 1 gtss_starCF_$FILE aligned static ext 3 13 , 3 select_sequence 3 14 , 4 OP1 /* Seek operation. */ 3 15 , 5 Device_Command bit(06)unal 3 16 , 5 zeroes_1 fixed bin(12)unsigned unal 3 17 , 5 IOC_Command bit(05)unal 3 18 , 5 zeroes_2 fixed bin(01)unsigned unal 3 19 , 5 Control fixed bin(06)unsigned unal 3 20 , 5 Count fixed bin(06)unsigned unal 3 21 3 22 , 4 ID1 3 23 , 5 fcb_loc bit(18)unal 3 24 , 5 DCW_list_loc bit(18)unal 3 25 3 26 , 4 OP2 /* Write opteration. */ 3 27 , 5 Device_Command bit(06)unal 3 28 , 5 zeroes_1 fixed bin(12)unsigned unal 3 29 , 5 IOC_Command bit(05)unal 3 30 , 5 zeroes_2 fixed bin(01)unsigned unal 3 31 , 5 Control fixed bin(06)unsigned unal 3 32 , 5 Count fixed bin(06)unsigned unal 3 33 3 34 , 4 ID2 3 35 , 5 fcb_loc bit(18)unal 3 36 , 5 DCW_list_loc bit(18)unal 3 37 3 38 , 4 RETURN_WORD 3 39 , 5 Status_loc bit(18)unal 3 40 , 5 Courtesy_Call_loc bit(18)unal 3 41 3 42 , 3 Seek_Word 3 43 , 4 Seek_loc bit(18)unal 3 44 , 4 Seek_count fixed bin(18)unsigned unal 3 45 , 3 Seek_Address fixed bin(35) 3 46 , 3 STATUS bit(72) unal 3 47 3 48 , 3 DCW 3 49 , 4 memory_loc bit(18)unal 3 50 , 4 zeroes_3 fixed bin(03)unsigned unal 3 51 , 4 action_code fixed bin(03)unsigned unal 3 52 , 4 word_count fixed bin(12)unsigned unal 3 53 3 54 , 3 RECORD 3 55 , 4 no_characters fixed bin(18)unsigned unal 3 56 , 4 zeroes_4 bit(18)unal 3 57 , 4 chars char(252) 3 58 3 59 /* Stack to accomodate nested command file processing. */ 3 60 , 3 cf 3 61 , 4 top fixed bin(24) 3 62 , 4 aft_indx fixed bin(24) 3 63 , 4 first_time bit (1) unaligned 3 64 , 4 exclude_on bit (1) unaligned 3 65 ; 3 66 3 67 /* END INCLUDE FILE gtss_starCF_.incl.pl1 */ 142 143 /** **/ 4 1 /* BEGIN INCLUDE FILE gtss_ext_.incl.pl1 */ 4 2 /* 4 3* Created: (Wardd Multics) 05/20/78 1307.6 mst Sat 4 4* Modified: Ward 1981 add suspended_process dcl 4 5* Modified: Ron Barstad 83-07-21 Fixed level number on mcfc to 3 4 6* Modified: Ron Barstad 83-07-25 Fixed derail range in statistics to 4js3 number 4 7**/ 4 8 dcl gtss_ext_$aem fixed bin static ext /* >0 Print "additional" error information. */; 4 9 dcl gtss_ext_$bad_drl_rtrn static ext label /* Default for drl_rtrn. */; 4 10 dcl gtss_ext_$db (72)bit(1)unal static ext; 4 11 dcl gtss_ext_$deferred_catalogs_ptr ptr ext; 4 12 dcl gtss_ext_$dispose_of_drl static ext label /* quit handlers for some derails use this label to abort */; 4 13 dcl gtss_ext_$drl_rtrn (4)static ext label /* where to return at subsystem end */; 4 14 dcl gtss_ext_$drm_path char(168)static ext /* gtss_expand_pathname_stores drm_path */; 4 15 dcl gtss_ext_$drun_jid char (5) static ext /* valid only for DRUN executing under absentee */; 4 16 dcl gtss_ext_$event_channel fixed bin (71) static ext /* used for DABT signals */; 4 17 dcl gtss_ext_$finished static ext label /* Return to gtss for normal conclusion. */; 4 18 dcl gtss_ext_$gdb_name char(8)ext /* Name H* module to debug. */; 4 19 dcl gtss_ext_$get_line entry(ptr,ptr,fixed bin(21),fixed bin(21),fixed bin(35))variable ext /* Build mode input procedure. */; 4 20 dcl gtss_ext_$gtss_slave_area_seg (4) ext static ptr /* pointer to gtss slave area segment */; 4 21 dcl gtss_ext_$hcs_work_area_ptr ptr ext static /* Temp seg for acl lists. */; 4 22 dcl gtss_ext_$homedir char (64) static ext /* user's home dir */; 4 23 dcl gtss_ext_$last_k_was_out bit (1)aligned ext static /* "1"b => last tty output was output. */; 4 24 dcl gtss_ext_$pdir char (168) varying ext static /* pathname of process directory */; 4 25 dcl gtss_ext_$popup_from_pi static ext label /* transfer to this label after pi simulates popup primitive */; 4 26 dcl gtss_ext_$process_type fixed bin (17) static ext; 4 27 dcl gtss_ext_$put_chars entry(ptr,ptr,fixed bin(24),fixed bin(35)) variable ext /* Terminal output procedure. */; 4 28 dcl gtss_ext_$restart_from_pi static ext label /* transfer to this label after pi restores machine conditions */; 4 29 dcl gtss_ext_$restart_seg_ptr ptr static ext /* points to DRUN restart file when exec under absentee */; 4 30 dcl gtss_ext_$sig_ptr ext static ptr /* saved ptr to signal_ */; 4 31 dcl gtss_ext_$stack_level_ fixed bin ext static; 4 32 dcl gtss_ext_$suspended_process bit(1) ext static; 4 33 dcl gtss_ext_$SYstarstar_file_no fixed bin (24) static ext; 4 34 dcl gtss_ext_$user_id char (26)var ext; 4 35 dcl gtss_ext_$work_area_ptr ptr ext; 4 36 4 37 dcl 1 gtss_ext_$CFP_bits aligned static external 4 38 , 3 no_input_yet bit (1) unaligned /* used in gtss_CFP_input_, gtss_read_starCFP_ */ 4 39 , 3 rtn_bits bit (4) unaligned /* used in gtss_CFP_input_, gtss_CFP_output_ */ 4 40 , 3 cpos_called bit (1) unaligned /* used in gtss_CFP_input_, gtss_drl_t_cfio_, gtss_abandon_CFP_ */ 4 41 , 3 cout_called bit (1) unaligned /* used in gtss_read_starCFP_, gtss_abandon_CFP_ */ 4 42 , 3 build_mode bit (1) unaligned /* used in gtss_build_, gtss_dsd_process_ */ 4 43 ; 4 44 4 45 dcl 1 gtss_ext_$com_reg aligned static ext, 4 46 3 tsdmx, 4 47 4 dst fixed bin (18) unsigned unaligned, 4 48 4 dit fixed bin (18) unsigned unaligned, 4 49 3 tsdpt fixed bin (36) unsigned unaligned, 4 50 3 tsddt fixed bin (36) unsigned unaligned, 4 51 3 tsdid bit (72) unaligned, 4 52 3 tsdsd bit (36) unaligned, 4 53 3 tsdst fixed bin (36) unsigned unaligned, 4 54 3 tsdjb fixed bin (35) unaligned, 4 55 3 tsdgt, 4 56 4 ust_loc fixed bin (18) unsigned unaligned, 4 57 4 gating_ctl fixed bin (18) unsigned unaligned, 4 58 3 tcdfr bit (36) unaligned; 4 59 4 60 dcl 1 gtss_ext_$flags aligned static ext 4 61 , 3 dispose_of_drl_on_pi bit (01) unal /* 1 => drl that should be aborted after quit-pi sequence */ 4 62 , 3 drl_in_progress bit (01) unal /* 1 => drl handler executing; 0 => gcos code executing */ 4 63 , 3 popup_from_pi bit (01) unal /* 1 => derail processor will simulate Gcos break instead of returning */ 4 64 , 3 unfinished_drl bit (01) unal /* 1 => subsystem is handling breaks and quit was raised during a drl */ 4 65 , 3 ss_time_limit_set bit (01) unal /* 1 => exec time limit set for subsystem */ 4 66 , 3 timer_ranout bit (01) unal /* 1 => user is executing timer runout code */ 4 67 , 3 gtss_com_err_sw bit (01) unal /* 1 => stop com_err_ string from going to terminal */ 4 68 , 3 available bit (65) unal 4 69 ; 4 70 4 71 4 72 dcl 1 gtss_ext_$statistics aligned static ext, /* Derail usage statistics */ 4 73 3 total_time (-10:71)fixed bin (71), 4 74 3 count (-10:71)fixed bin (17); 4 75 4 76 /* Declaration of Available File Table 4 77* */ 4 78 dcl 1 gtss_ext_$aft aligned ext, /* aft structure */ 4 79 4 80 3 start_list (0:102) fixed bin (24), /* >0 => 1st aft_entry row to start of next entry chain. */ 4 81 4 82 3 aft_entry (20), 4 83 4 altname char (8), /* altname name for attaching this file */ 4 84 4 next_entry fixed bin (24), /* Next aft_entry in hash chain. */ 4 85 4 previous_add fixed bin (24), /* Previously added entry. */ 4 86 4 next_add fixed bin (24), /* Entry added after this one. */ 4 87 4 used bit (1) unal, /* "1"b => aft_entry contains AFT value. */ 4 88 4 forced bit(1) unal, /* "1"b => gtss_verify_access_ forced access on this file. */ 4 89 4 90 3 free_space fixed bin (24), /* Index of start of free space list for aft entries. */ 4 91 3 first_added fixed bin (24), /* >0 => start of chain in add order. */ 4 92 3 last_added fixed bin (24) /* >0 => end of chain in added order. */; 4 93 4 94 dcl gtss_ext_$ppt ptr ext /* switch name for tapein drl */; 4 95 /** Data structure to provide access to installed 4 96* subsystems fast library load. 4 97* **/ 4 98 dcl 1 gtss_ext_$fast_lib aligned ext 4 99 , 3 fast_lib_fcb ptr /* Pointer to msf fcb. */ 4 100 , 3 fast_lib_ncp fixed bin (24) /* Number of components. */ 4 101 , 3 comp_ptr (0:9)ptr /* Pointer to component. */ 4 102 , 3 comp_wds (0:9)fixed bin (24) /* Component length (words). */ 4 103 ; 4 104 4 105 /* Pointers to segments to regulate multipler 4 106* callers to files. Same segments are used to regulate 4 107* all simulator callers. 4 108**/ 4 109 dcl 1 gtss_ext_$mcfc aligned ext, 4 110 3 multics_lock_id bit(36), 4 111 3 wait_time fixed bin, 4 112 3 files_ptr ptr, 4 113 3 names_ptr ptr, 4 114 3 callers_ptr (0:3)ptr 4 115 ; 4 116 4 117 /* END INCLUDE FILE gtss_ext_.incl.pl1 */ 144 145 /** **/ 5 1 /* BEGIN INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 5 2 /* UST: User Status Table 5 3* definitions based on 5 4* System Tables, Order number DD14-01E, January 1981 5 5* Section 15, Time Sharing System 5 6* 5 7* Authors: Robert J. Grimes Created 5 8* - Albert N. Kepner 1978 5 9* - Robert M. May 5 10* - David B. Ward 5 11* Change: Dave Ward 02/23/79 Level 4 numbering. 5 12* Change: Ron Barstad 83-07-12 Repaired damaged formating and word offset comments 5 13* Brought up to 4JS3 functionality 5 14**/ 5 15 /* octal word offsets of entries */ 5 16 dcl 1 gtss_ust_ext_$ust aligned ext, 5 17 3 gtss_ust, 5 18 /* 0-1 */ 4 lid bit (72), 5 19 /* 2 */ 4 lstp bit (36), 5 20 /* 3 */ 4 ltin bit (36), 5 21 /* 4 */ 4 lstio, 5 22 5 no_of_chars_by_8 fixed bin (18) uns unal, 5 23 5 no_of_disk_io fixed bin (18) uns unal, 5 24 /* 5 */ 4 lsnub bit (36), 5 25 /* 6-7 */ 4 lchg bit (72), 5 26 /* 10 */ 4 lbuf, 5 27 5 address bit (18)unaligned, 5 28 5 tally bit (1)unaligned, 5 29 5 terminal_type bit (5)unaligned, 5 30 5 station_id bit (12)unaligned, 5 31 /* 11-12 */ 4 liost (0:1) bit (36), 5 32 /* 13 */ 4 lcc bit (36), 5 33 /* 14 */ 4 lback, 5 34 5 fill1 bit (18) unaligned, 5 35 5 gwake fixed bin (17) unaligned, 5 36 /* 15 */ 4 lflag, 5 37 5 mp_list bit (18) unaligned, 5 38 5 flags unaligned, 5 39 6 b18 bit (1) unaligned, 5 40 6 b19 bit (1) unaligned, 5 41 6 b20 bit (1) unaligned, 5 42 6 b21 bit (1) unaligned, 5 43 6 b22 bit (1) unaligned, 5 44 6 b23 bit (1) unaligned, 5 45 6 b24 bit (1) unaligned, 5 46 6 b25 bit (1) unaligned, 5 47 6 b26 bit (1) unaligned, 5 48 6 b27 bit (1) unaligned, 5 49 6 b28 bit (1) unaligned, 5 50 6 b29 bit (1) unaligned, 5 51 6 b30 bit (1) unaligned, 5 52 6 b31 bit (1) unaligned, 5 53 6 b32 bit (1) unaligned, 5 54 6 b33 bit (1) unaligned, 5 55 6 b34 bit (1) unaligned, 5 56 6 b35 bit (1) unaligned, 5 57 /* 16 */ 4 lkdss bit (36), 5 58 /* 17 */ 4 lfile, 5 59 5 program_stack fixed bin (17) unal, 5 60 5 file_list_ptr bit (18) unal, 5 61 /* 20 */ 4 lttys bit (36), 5 62 /* 21 */ 4 lswth, 5 63 5 b0 bit (1) unaligned, 5 64 5 b1 bit (1) unaligned, 5 65 5 b2 bit (1) unaligned, 5 66 5 b3 bit (1) unaligned, 5 67 5 b4 bit (1) unaligned, 5 68 5 b5 bit (1) unaligned, 5 69 5 b6 bit (1) unaligned, 5 70 5 b7 bit (1) unaligned, 5 71 5 b8 bit (1) unaligned, 5 72 5 b9 bit (1) unaligned, 5 73 5 b10 bit (1) unaligned, 5 74 5 b11 bit (1) unaligned, 5 75 5 b12 bit (1) unaligned, 5 76 5 b13 bit (1) unaligned, 5 77 5 b14 bit (1) unaligned, 5 78 5 b15 bit (1) unaligned, 5 79 5 b16 bit (1) unaligned, 5 80 5 b17 bit (1) unaligned, 5 81 5 b18 bit (1) unaligned, 5 82 5 b19 bit (1) unaligned, 5 83 5 b20 bit (1) unaligned, 5 84 5 b21 bit (1) unaligned, 5 85 5 b22 bit (1) unaligned, 5 86 5 b23 bit (1) unaligned, 5 87 5 b24 bit (1) unaligned, 5 88 5 b25 bit (1) unaligned, 5 89 5 b26 bit (1) unaligned, 5 90 5 b27 bit (1) unaligned, 5 91 5 b28 bit (1) unaligned, 5 92 5 b29 bit (1) unaligned, 5 93 5 b30 bit (1) unaligned, 5 94 5 b31 bit (1) unaligned, 5 95 5 b32 bit (1) unaligned, 5 96 5 b33 bit (1) unaligned, 5 97 5 b34 bit (1) unaligned, 5 98 5 b35 bit (1) unaligned, 5 99 /* 22 */ 4 lsize, 5 100 5 bar fixed bin (17) unaligned, 5 101 5 limit bit (18) unaligned, 5 102 /* 23... */ 4 lswap, 5 103 5 fill bit (18) unal, 5 104 5 size bit (18) unal, 5 105 /* ...24 */ 4 transfer_cell bit (36) unal, 5 106 /* 25 */ 4 lerrm bit (36), 5 107 /* 26-37 */ 4 lcfil (0:9) bit (36), 5 108 /* 40 */ 4 lsybc, 5 109 5 b0_17 fixed bin (17) unaligned, 5 110 5 b18_35 fixed bin (17) unaligned, 5 111 /* 41-42 */ 4 lstem (0:1) bit (36), 5 112 /* 43 */ 4 lcals, 5 113 5 b0_17 fixed bin (17) unaligned, 5 114 5 b18_35 bit (18) unaligned, 5 115 /* 44-51 */ 4 subsystems (3), 5 116 5 content_lswap, 5 117 6 fill bit (18) unal, 5 118 6 size bit (18) unal, 5 119 5 tally_address fixed bin (17) unaligned, 5 120 5 ss_flags bit (18) unaligned, 5 121 /* 52 */ 4 ltalc, 5 122 5 tod fixed bin (17) unaligned, 5 123 5 startup fixed bin (17) unaligned, 5 124 /* 53 */ 4 lspts fixed bin (35), 5 125 /* 54 */ 4 lflg2, 5 126 5 b0 bit (1) unaligned, 5 127 5 b1 bit (1) unaligned, 5 128 5 b2 bit (1) unaligned, 5 129 5 b3 bit (1) unaligned, 5 130 5 b4 bit (1) unaligned, 5 131 5 b5 bit (1) unaligned, 5 132 5 b6 bit (1) unaligned, 5 133 5 b7 bit (1) unaligned, 5 134 5 b8 bit (1) unaligned, 5 135 5 b9 bit (1) unaligned, 5 136 5 b10 bit (1) unaligned, 5 137 5 b11 bit (1) unaligned, 5 138 5 b12 bit (1) unaligned, 5 139 5 b13 bit (1) unaligned, 5 140 5 b14 bit (1) unaligned, 5 141 5 b15 bit (1) unaligned, 5 142 5 b16 bit (1) unaligned, 5 143 5 b17 bit (1) unaligned, 5 144 5 b18 bit (1) unaligned, 5 145 5 b19 bit (1) unaligned, 5 146 5 b20 bit (1) unaligned, 5 147 5 b21 bit (1) unaligned, 5 148 5 b22 bit (1) unaligned, 5 149 5 b23 bit (1) unaligned, 5 150 5 b24 bit (1) unaligned, 5 151 5 b25 bit (1) unaligned, 5 152 5 b26 bit (1) unaligned, 5 153 5 b27 bit (1) unaligned, 5 154 5 b28 bit (1) unaligned, 5 155 5 b29 bit (1) unaligned, 5 156 5 b30 bit (1) unaligned, 5 157 5 b31 bit (1) unaligned, 5 158 5 b32 bit (1) unaligned, 5 159 5 b33 bit (1) unaligned, 5 160 5 b34 bit (1) unaligned, 5 161 5 b35 bit (1) unaligned, 5 162 /* 55-60 */ 4 lsftm (0:3) bit (36), 5 163 /* 61 */ 4 lsprt fixed bin (35), 5 164 /* 62 */ 4 ltrm bit (36), 5 165 /* 63 */ 4 linno fixed bin (35), 5 166 /* 64 */ 4 lincr fixed bin (35), 5 167 /* 65 */ 4 ltdes bit (36), 5 168 /* 66 */ 4 lbptr bit (36), 5 169 /* 67 */ 4 lpptr, 5 170 5 last_file_pat_ptr bin (18) uns unal, 5 171 5 lpptr_reserved bin (18) uns unal, 5 172 /* 70 */ 4 lsclp bit (36), 5 173 /* 71 */ 4 limit fixed bin (35), 5 174 /* 72 */ 4 lacpt, 5 175 5 jout_pat_offset bit (18) unal, 5 176 5 permissions unal, 5 177 6 lodx bit (1) unal, 5 178 6 cardin bit (1) unal, 5 179 6 talk bit (1) unal, 5 180 6 lods bit (1) unal, 5 181 5 cardin_urgency bit (14) unal, 5 182 /* 73 */ 4 ldrl, 5 183 5 ilc bit (18) unaligned, 5 184 5 code fixed bin (17) unaligned, 5 185 /* 74 */ 4 ljsnb bit (36), 5 186 /* 75 */ 4 ltm0 bit (36), 5 187 /* 76 */ 4 ltm1 bit (36), 5 188 /* 77 */ 4 ltm2 bit (36), 5 189 /* 100 */ 4 ltm3 bit (36), 5 190 /* 101 */ 4 ltm4 bit (36), 5 191 /* 102 */ 4 ltm5 bit (36), 5 192 /* 103 */ 4 ltmwt bit (36), 5 193 /* 104 */ 4 ltmrs bit (36), 5 194 /* 105 */ 4 ltc0 bit (36), 5 195 /* 106 */ 4 ltc1 bit (36), 5 196 /* 107 */ 4 ltc2 bit (36), 5 197 /* 110 */ 4 lct3 bit (36), 5 198 /* 111 */ 4 ltc4 bit (36), 5 199 /* 112 */ 4 ltc5 bit (36), 5 200 /* 113 */ 4 ltcw bit (36), 5 201 /* 114 */ 4 lkst bit (36), 5 202 /* 115 */ 4 lkst2 bit (36), 5 203 /* 116 */ 4 lkcc bit (36), 5 204 /* 117 */ 4 lkms bit (36), 5 205 /* 120-121 */ 4 lksdc (0:1) bit (36), 5 206 /* 122 */ 4 lkntp bit (36), 5 207 /* 123 */ 4 lkrdc bit (36), 5 208 /* 124 */ 4 lpqf bit (36), 5 209 /* 125 */ 4 lpqb bit (36), 5 210 /* 126 */ 4 lustl bit (36), 5 211 /* 127 */ 4 ltemp bit (36), 5 212 /* 130 */ 4 lrtll, 5 213 5 word_length fixed bin unaligned, 5 214 5 char_length fixed bin unaligned, 5 215 /* 131 */ 4 ltim bit (36), 5 216 /* 132 */ 4 lcfio, 5 217 5 sect_out fixed bin(18)unsigned unal, 5 218 5 sect_in fixed bin(18)unsigned unal, 5 219 /* 133 */ 4 lcfst, 5 220 5 initial_sect_out fixed bin(18)unsigned unal, 5 221 5 start_term fixed bin(18)unsigned unal, 5 222 /* 134 */ 4 lcmpt bit (36), 5 223 /* 135 */ 4 lcjid bit (36), 5 224 /* 136-137 */ 4 lrcal (0:1) bit (36), 5 225 /* 140 */ 4 lrdta bit (36), 5 226 /* 141 */ 4 lrrsk bit (36), 5 227 /* 142 */ 4 lrskd bit (36), 5 228 /* 143 */ 4 lrcc bit (36), 5 229 /* 144-145 */ 4 lrsts (0:1) bit (36), 5 230 /* 146 */ 4 lrtm bit (36), 5 231 /* 147 */ 4 lswt2, 5 232 5 b0 bit (1) unaligned, 5 233 5 b1 bit (1) unaligned, 5 234 5 b2 bit (1) unaligned, 5 235 5 b3 bit (1) unaligned, 5 236 5 b4 bit (1) unaligned, 5 237 5 b5 bit (1) unaligned, 5 238 5 b6 bit (1) unaligned, 5 239 5 b7 bit (1) unaligned, 5 240 5 b8 bit (1) unaligned, 5 241 5 b9 bit (1) unaligned, 5 242 5 b10 bit (1) unaligned, 5 243 5 b11 bit (1) unaligned, 5 244 5 b12 bit (1) unaligned, 5 245 5 b13 bit (1) unaligned, 5 246 5 b14 bit (1) unaligned, 5 247 5 b15 bit (1) unaligned, 5 248 5 b16 bit (1) unaligned, 5 249 5 b17 bit (1) unaligned, 5 250 5 b18 bit (1) unaligned, 5 251 5 b19 bit (1) unaligned, 5 252 5 b20 bit (1) unaligned, 5 253 5 b21 bit (1) unaligned, 5 254 5 b22 bit (1) unaligned, 5 255 5 b23 bit (1) unaligned, 5 256 5 b24 bit (1) unaligned, 5 257 5 b25 bit (1) unaligned, 5 258 5 b26 bit (1) unaligned, 5 259 5 b27 bit (1) unaligned, 5 260 5 b28 bit (1) unaligned, 5 261 5 b29 bit (1) unaligned, 5 262 5 b30 bit (1) unaligned, 5 263 5 b31 bit (1) unaligned, 5 264 5 b32 bit (1) unaligned, 5 265 5 b33 bit (1) unaligned, 5 266 5 b34 bit (1) unaligned, 5 267 5 b35 bit (1) unaligned, 5 268 /* 150 */ 4 llsnb bit (36), 5 269 /* 151 */ 4 lesq bit (36), 5 270 /* 152-153 */ 4 lumc (0:1) bit (36), 5 271 /* 154-155 */ 4 lfnam (0:1) bit (36), 5 272 /* 156 */ 4 lopts bit (36), 5 273 /* 157 */ 4 licec, 5 274 5 b0_17 bit (18) unaligned, 5 275 5 b18_35 fixed bin (17) unaligned, 5 276 /* 160 */ 4 lflg3, 5 277 5 b0 bit (1) unaligned, 5 278 5 b1 bit (1) unaligned, 5 279 5 b2 bit (1) unaligned, 5 280 5 b3 bit (1) unaligned, 5 281 5 b4 bit (1) unaligned, 5 282 5 b5 bit (1) unaligned, 5 283 5 b6 bit (1) unaligned, 5 284 5 b7 bit (1) unaligned, 5 285 5 b8 bit (1) unaligned, 5 286 5 b9 bit (1) unaligned, 5 287 5 b10 bit (1) unaligned, 5 288 5 b11 bit (1) unaligned, 5 289 5 b12 bit (1) unaligned, 5 290 5 b13 bit (1) unaligned, 5 291 5 b14 bit (1) unaligned, 5 292 5 b15 bit (1) unaligned, 5 293 5 b16 bit (1) unaligned, 5 294 5 b17 bit (1) unaligned, 5 295 5 b18 bit (1) unaligned, 5 296 5 b19 bit (1) unaligned, 5 297 5 b20 bit (1) unaligned, 5 298 5 b21 bit (1) unaligned, 5 299 5 b22 bit (1) unaligned, 5 300 5 b23 bit (1) unaligned, 5 301 5 b24 bit (1) unaligned, 5 302 5 b25 bit (1) unaligned, 5 303 5 b26 bit (1) unaligned, 5 304 5 b27 bit (1) unaligned, 5 305 5 b28 bit (1) unaligned, 5 306 5 b29 bit (1) unaligned, 5 307 5 b30 bit (1) unaligned, 5 308 5 b31 bit (1) unaligned, 5 309 5 b32 bit (1) unaligned, 5 310 5 b33 bit (1) unaligned, 5 311 5 b34 bit (1) unaligned, 5 312 5 b35 bit (1) unaligned, 5 313 /* 161-163 */ 4 lpage (0:2) bit (36), 5 314 /* 164 */ 4 lsit1 bit (36), 5 315 /* 165 */ 4 lsit2 bit (36), 5 316 /* 166 */ 4 lsit3 bit (36), 5 317 /* 167 */ 4 lsit4 bit (36), 5 318 /* The following entries are maintained by gtss and are not found in TSS UST */ 5 319 /* 170 */ 4 lxxx, /* program stack index, offset from gtss_ust */ 5 320 5 b0_17 fixed bin (17) unaligned, 5 321 5 b18_35 bit (18) unaligned, /* not used */ 5 322 /* 171-175 */ 4 lprgs (5), 5 323 5 b0_17 fixed bin (17) unaligned, 5 324 5 b18_35 fixed bin (17) unaligned, 5 325 /* 176 */ 4 fill bit (36), 5 326 /* 177 */ 4 remote_io_buffer aligned, 5 327 5 buffer_control_word, 5 328 6 current_line_pointer bit (18)unal, 5 329 6 buffer_threshold_address bit (18)unal, 5 330 5 number_words_transmitted fixed bin (17)unal, 5 331 5 FILL1 fixed bin (17)unal, 5 332 5 count_of_characters_transmitted fixed bin (17)unal, 5 333 5 FILL2 fixed bin (17)unal, 5 334 5 characters_transmitted (244) char (1) unal, 5 335 /* 277 */ 4 word_after_ust bit (36) aligned; 5 336 5 337 /* END INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 146 147 6 1 /* BEGIN INCLUDE FILE gtss_db_names.incl.pl1 */ 6 2 /* 6 3* Created: (Wardd Multics) 03/29/79 1909.1 mst Thu 6 4**/ 6 5 6 6 /* To provide a new debugging switch: 6 7* 6 8* 1) Locate the comment "Insert next entry above this comment". 6 9* 6 10* 2) Place a new declaration for a db_ variable just 6 11* above this comment, in the same manner as the 6 12* current declaration just above the comment, using 6 13* the next integer gtss_ext_$db index. 6 14* 6 15* 3) Execute the gtss|db_names ted macro (this updates 6 16* the sorted name table). 6 17* 6 18* 4) Example use: 6 19* 6 20* if db_drl_grow then do; 6 21* . 6 22* . 6 23* . 6 24* debug i/o statements using com_err_ or ioa_ 6 25* . 6 26* . 6 27* . 6 28* end; 6 29* 6 30**/ 6 31 6 32 dcl ( 6 33 db_ bit(1) defined(gtss_ext_$db(01)) 6 34 ,db_CFP_input bit(1) defined(gtss_ext_$db(02)) 6 35 ,db_drl_addmem bit(1) defined(gtss_ext_$db(03)) 6 36 ,db_drl_defil bit(1) defined(gtss_ext_$db(04)) 6 37 ,db_drl_filact bit(1) defined(gtss_ext_$db(05)) 6 38 ,db_drl_filsp bit(1) defined(gtss_ext_$db(06)) 6 39 ,db_drl_grow bit(1) defined(gtss_ext_$db(07)) 6 40 ,db_drl_rew bit(1) defined(gtss_ext_$db(08)) 6 41 ,db_filact_funct02 bit(1) defined(gtss_ext_$db(09)) 6 42 ,db_filact_funct03 bit(1) defined(gtss_ext_$db(10)) 6 43 ,db_filact_funct04 bit(1) defined(gtss_ext_$db(11)) 6 44 ,db_filact_funct05 bit(1) defined(gtss_ext_$db(12)) 6 45 ,db_filact_funct10 bit(1) defined(gtss_ext_$db(13)) 6 46 ,db_filact_funct11 bit(1) defined(gtss_ext_$db(14)) 6 47 ,db_filact_funct14 bit(1) defined(gtss_ext_$db(15)) 6 48 ,db_filact_funct18 bit(1) defined(gtss_ext_$db(16)) 6 49 ,db_filact_funct19 bit(1) defined(gtss_ext_$db(17)) 6 50 ,db_filact_funct21 bit(1) defined(gtss_ext_$db(18)) 6 51 ,db_filact_funct22 bit(1) defined(gtss_ext_$db(19)) 6 52 ,db_interp_prim bit(1) defined(gtss_ext_$db(20)) 6 53 ,db_ios bit(1) defined(gtss_ext_$db(21)) 6 54 ,db_run_subsystem bit(1) defined(gtss_ext_$db(22)) 6 55 ,db_drl_t_cfio bit(1) defined(gtss_ext_$db(23)) 6 56 ,db_drl_switch bit(1) defined(gtss_ext_$db(24)) 6 57 ,db_drl_dio bit(1) defined(gtss_ext_$db(25)) 6 58 ,db_drl_retfil bit(1) defined(gtss_ext_$db(26)) 6 59 ,db_drl_msub bit(1) defined(gtss_ext_$db(27)) 6 60 ,db_drl_callss bit(1) defined(gtss_ext_$db(28)) 6 61 ,db_drl_rstswh bit(1) defined(gtss_ext_$db(29)) 6 62 ,db_drl_setswh bit(1) defined(gtss_ext_$db(30)) 6 63 ,db_mcfc bit(1) defined(gtss_ext_$db(31)) 6 64 ,db_dq bit(1) defined(gtss_ext_$db(32)) 6 65 ,db_abs bit(1) defined(gtss_ext_$db(33)) 6 66 ,db_attributes_mgr bit(1) defined(gtss_ext_$db(34)) 6 67 ,db_expand_pathname bit(1) defined(gtss_ext_$db(35)) 6 68 ,db_drl_part bit(1) defined(gtss_ext_$db(36)) 6 69 ,db_drl_morlnk bit(1) defined(gtss_ext_$db(37)) 6 70 ,db_drl_kin bit(1) defined(gtss_ext_$db(38)) 6 71 /* Insert next entry above this comment. */ 6 72 ); 6 73 6 74 /* Table of sorted names. */ 6 75 dcl 1 debug_bit_names (38) static int options(constant) 6 76 , 2 name char(18)var init( 6 77 "" ,"CFP_input" ,"abs" ,"attributes_mgr" ,"dq" ,"drl_addmem" 6 78 ,"drl_callss" ,"drl_defil" ,"drl_dio" ,"drl_filact" ,"drl_filsp" 6 79 ,"drl_grow" ,"drl_kin" ,"drl_morlnk" ,"drl_msub" ,"drl_part" 6 80 ,"drl_retfil" ,"drl_rew" ,"drl_rstswh" ,"drl_setswh" ,"drl_switch" 6 81 ,"drl_t_cfio" ,"expand_pathname" ,"filact_funct02" ,"filact_funct03" 6 82 ,"filact_funct04" ,"filact_funct05" ,"filact_funct10" ,"filact_funct11" 6 83 ,"filact_funct14" ,"filact_funct18" ,"filact_funct19" ,"filact_funct21" 6 84 ,"filact_funct22" ,"interp_prim" ,"ios" ,"mcfc" ,"run_subsystem" 6 85 ) 6 86 , 2 value fixed bin init( 6 87 01 ,02 ,33 ,34 ,32 ,03 ,28 ,04 ,25 ,05 ,06 ,07 ,38 ,37 ,27 ,36 ,26 ,08 6 88 ,29 ,30 ,24 ,23 ,35 ,09 ,10 ,11 ,12 ,13 ,14 ,15 ,16 ,17 ,18 ,19 ,20 ,21 6 89 ,31 ,22 6 90 ); 6 91 /* End of table. */ 6 92 /* END INCLUDE FILE gtss_db_names.incl.pl1 */ 148 149 end /* gtss_CFP_output_ */; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1028.6 gtss_CFP_output_.pl1 >spec>on>7105>gtss_CFP_output_.pl1 138 1 12/10/84 1029.7 gtss_entry_dcls.incl.pl1 >spec>on>7105>gtss_entry_dcls.incl.pl1 140 2 09/09/83 1713.2 gtss_CFP_bits.incl.pl1 >ldd>include>gtss_CFP_bits.incl.pl1 142 3 09/09/83 1714.2 gtss_starCF_.incl.pl1 >ldd>include>gtss_starCF_.incl.pl1 144 4 09/09/83 1713.8 gtss_ext_.incl.pl1 >ldd>include>gtss_ext_.incl.pl1 146 5 09/09/83 1714.3 gtss_ust_ext_.incl.pl1 >ldd>include>gtss_ust_ext_.incl.pl1 148 6 09/09/83 1713.6 gtss_db_names.incl.pl1 >ldd>include>gtss_db_names.incl.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. RECORD 12 000024 external static structure level 2 dcl 3-12 b0 54 000032 external static bit(1) level 4 packed unaligned dcl 5-16 ref 46 46 b1 54(01) 000032 external static bit(1) level 4 packed unaligned dcl 5-16 ref 46 46 b4 54(04) 000032 external static bit(1) level 4 packed unaligned dcl 5-16 ref 46 46 bp parameter pointer dcl 121 set ref 9 62* 69* 76* 77* 90* 91* chars 13 000024 external static char(252) level 3 dcl 3-12 ref 49 49 code 000100 automatic fixed bin(35,0) initial dcl 124 set ref 77* 79 91* 93 124* copy_on defined bit(1) unaligned dcl 2-9 ref 46 db_CFP_input defined bit(1) unaligned dcl 6-32 ref 49 dele_on defined bit(1) unaligned dcl 2-8 ref 46 ec parameter fixed bin(35,0) dcl 123 set ref 9 45* 62* 63 69* 70 76* 77 79 90* 91 93 fixed builtin function dcl 125 ref 47 gtss_abort_subsystem_ 000016 constant entry external dcl 1-15 ref 102 gtss_ext_$CFP_bits 000030 external static structure level 1 dcl 4-37 gtss_ext_$db 000026 external static bit(1) array unaligned dcl 4-10 ref 49 49 gtss_find_cond_frame_ 000020 constant entry external dcl 1-110 ref 102 102 gtss_starCF_$FILE 000024 external static structure level 1 dcl 3-12 gtss_ust 000032 external static structure level 2 dcl 5-16 gtss_ust_ext_$ust 000032 external static structure level 1 dcl 5-16 gtss_write_starCFP_ 000022 constant entry external dcl 1-151 ref 69 77 ioa_ 000010 constant entry external dcl 115 ref 49 iox_$put_chars 000012 constant entry external dcl 117 ref 62 76 90 91 iox_$user_output 000014 external static pointer dcl 119 set ref 62* 76* 90* 91* lcfio 132 000032 external static structure level 3 dcl 5-16 lcfst 133 000032 external static structure level 3 dcl 5-16 lflg2 54 000032 external static structure level 3 dcl 5-16 proper_rtn 000102 automatic entry variable dcl 126 set ref 47* 48 rl parameter fixed bin(21,0) dcl 122 set ref 9 49* 49 49 62* 69* 76* 77* 90* 91* rtn_bits 0(01) 000030 external static bit(4) level 2 packed unaligned dcl 4-37 set ref 46* 47 rtn_table 000106 automatic entry variable initial array dcl 127 set ref 47 127* 127* 127* 127* 127* 127* 127* 127* sect_out 132 000032 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 5-16 ref 49 start_term 133(18) 000032 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 5-16 set ref 101* talk_on defined bit(1) unaligned dcl 2-10 ref 46 up parameter pointer dcl 120 set ref 9 69* 77* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. CFP_in_progress defined bit(1) unaligned dcl 2-7 break_flag defined bit(1) unaligned dcl 2-13 com_err_ 000000 constant entry external dcl 1-8 db_ defined bit(1) unaligned dcl 6-32 db_abs defined bit(1) unaligned dcl 6-32 db_attributes_mgr defined bit(1) unaligned dcl 6-32 db_dq defined bit(1) unaligned dcl 6-32 db_drl_addmem defined bit(1) unaligned dcl 6-32 db_drl_callss defined bit(1) unaligned dcl 6-32 db_drl_defil defined bit(1) unaligned dcl 6-32 db_drl_dio defined bit(1) unaligned dcl 6-32 db_drl_filact defined bit(1) unaligned dcl 6-32 db_drl_filsp defined bit(1) unaligned dcl 6-32 db_drl_grow defined bit(1) unaligned dcl 6-32 db_drl_kin defined bit(1) unaligned dcl 6-32 db_drl_morlnk defined bit(1) unaligned dcl 6-32 db_drl_msub defined bit(1) unaligned dcl 6-32 db_drl_part defined bit(1) unaligned dcl 6-32 db_drl_retfil defined bit(1) unaligned dcl 6-32 db_drl_rew defined bit(1) unaligned dcl 6-32 db_drl_rstswh defined bit(1) unaligned dcl 6-32 db_drl_setswh defined bit(1) unaligned dcl 6-32 db_drl_switch defined bit(1) unaligned dcl 6-32 db_drl_t_cfio defined bit(1) unaligned dcl 6-32 db_expand_pathname defined bit(1) unaligned dcl 6-32 db_filact_funct02 defined bit(1) unaligned dcl 6-32 db_filact_funct03 defined bit(1) unaligned dcl 6-32 db_filact_funct04 defined bit(1) unaligned dcl 6-32 db_filact_funct05 defined bit(1) unaligned dcl 6-32 db_filact_funct10 defined bit(1) unaligned dcl 6-32 db_filact_funct11 defined bit(1) unaligned dcl 6-32 db_filact_funct14 defined bit(1) unaligned dcl 6-32 db_filact_funct18 defined bit(1) unaligned dcl 6-32 db_filact_funct19 defined bit(1) unaligned dcl 6-32 db_filact_funct21 defined bit(1) unaligned dcl 6-32 db_filact_funct22 defined bit(1) unaligned dcl 6-32 db_interp_prim defined bit(1) unaligned dcl 6-32 db_ios defined bit(1) unaligned dcl 6-32 db_mcfc defined bit(1) unaligned dcl 6-32 db_run_subsystem defined bit(1) unaligned dcl 6-32 debug_bit_names internal static structure array level 1 unaligned dcl 6-75 gtss_CFP_abort_ 000000 constant entry external dcl 1-9 gtss_CFP_break_ 000000 constant entry external dcl 1-10 gtss_CFP_input_ 000000 constant entry external dcl 1-11 gtss_CFP_output_ 000000 constant entry external dcl 1-12 gtss_abandon_CFP_ 000000 constant entry external dcl 1-13 gtss_abort_dump_ 000000 constant entry external dcl 1-14 gtss_abort_subsystem_$not_imp 000000 constant entry external dcl 1-16 gtss_abs_$abs_equiv 000000 constant entry external dcl 1-19 gtss_abs_$cpu_runout 000000 constant entry external dcl 1-20 gtss_abs_$create_absin 000000 constant entry external dcl 1-21 gtss_abs_$dabt_check 000000 constant entry external dcl 1-22 gtss_abs_$get_drm 000000 constant entry external dcl 1-24 gtss_abs_$get_id 000000 constant entry external dcl 1-23 gtss_abs_login_banner_ 000000 constant entry external dcl 1-17 gtss_abs_logout_banner_ 000000 constant entry external dcl 1-18 gtss_adjust_size_ 000000 constant entry external dcl 1-25 gtss_aft_$add 000000 constant entry external dcl 1-26 gtss_aft_$delete 000000 constant entry external dcl 1-27 gtss_aft_$find 000000 constant entry external dcl 1-28 gtss_aft_$initialize 000000 constant entry external dcl 1-29 gtss_ascii_bcd_ 000000 constant entry external dcl 1-30 gtss_attributes_mgr_$get 000000 constant entry external dcl 1-31 gtss_attributes_mgr_$set 000000 constant entry external dcl 1-32 gtss_bcd_ascii_ 000000 constant entry external dcl 1-33 gtss_bcd_ascii_$lc 000000 constant entry external dcl 1-34 gtss_break_vector_ 000000 constant entry external dcl 1-35 gtss_break_vector_$drl_in_progress 000000 constant entry external dcl 1-36 gtss_break_vector_$status 000000 constant entry external dcl 1-37 gtss_build_ 000000 constant entry external dcl 1-38 gtss_com_err_ 000000 constant entry external dcl 1-39 gtss_derail_processor_ 000000 constant entry external dcl 1-40 gtss_derail_processor_$set 000000 constant entry external dcl 1-41 gtss_dq_$catp 000000 constant entry external dcl 1-42 gtss_dq_$create 000000 constant entry external dcl 1-43 gtss_dq_$dibp 000000 constant entry external dcl 1-44 gtss_dq_$entries_info 000000 constant entry external dcl 1-45 gtss_dq_$hdrp 000000 constant entry external dcl 1-46 gtss_dq_$mod_js 000000 constant entry external dcl 1-47 gtss_dq_$open_exc 000000 constant entry external dcl 1-48 gtss_dq_$open_gen 000000 constant entry external dcl 1-49 gtss_drl_abort_ 000000 constant entry external dcl 1-50 gtss_drl_addmem_ 000000 constant entry external dcl 1-51 gtss_drl_callss_ 000000 constant entry external dcl 1-52 gtss_drl_corfil_ 000000 constant entry external dcl 1-53 gtss_drl_defil_ 000000 constant entry external dcl 1-54 gtss_drl_defil_$subr 000000 constant entry external dcl 1-55 gtss_drl_dio_ 000000 constant entry external dcl 1-56 gtss_drl_drlimt_ 000000 constant entry external dcl 1-57 gtss_drl_drlsav_ 000000 constant entry external dcl 1-58 gtss_drl_filact_ 000000 constant entry external dcl 1-59 gtss_drl_filsp_ 000000 constant entry external dcl 1-60 gtss_drl_grow_ 000000 constant entry external dcl 1-61 gtss_drl_gwake_ 000000 constant entry external dcl 1-62 gtss_drl_jsts_ 000000 constant entry external dcl 1-63 gtss_drl_kin_ 000000 constant entry external dcl 1-64 gtss_drl_kotnow_ 000000 constant entry external dcl 1-65 gtss_drl_kotnow_$gtss_drl_kout_ 000000 constant entry external dcl 1-66 gtss_drl_koutn_ 000000 constant entry external dcl 1-67 gtss_drl_morlnk_ 000000 constant entry external dcl 1-68 gtss_drl_msub_ 000000 constant entry external dcl 1-69 gtss_drl_objtim_ 000000 constant entry external dcl 1-70 gtss_drl_part_ 000000 constant entry external dcl 1-71 gtss_drl_pasaft_ 000000 constant entry external dcl 1-72 gtss_drl_pasdes_ 000000 constant entry external dcl 1-73 gtss_drl_pasust_ 000000 constant entry external dcl 1-74 gtss_drl_pdio_ 000000 constant entry external dcl 1-75 gtss_drl_prgdes_ 000000 constant entry external dcl 1-76 gtss_drl_pseudo_ 000000 constant entry external dcl 1-77 gtss_drl_relmem_ 000000 constant entry external dcl 1-78 gtss_drl_restor_ 000000 constant entry external dcl 1-79 gtss_drl_retfil_ 000000 constant entry external dcl 1-80 gtss_drl_return_ 000000 constant entry external dcl 1-81 gtss_drl_rew_ 000000 constant entry external dcl 1-82 gtss_drl_rstswh_ 000000 constant entry external dcl 1-83 gtss_drl_setlno_ 000000 constant entry external dcl 1-84 gtss_drl_setswh_ 000000 constant entry external dcl 1-85 gtss_drl_snumb_ 000000 constant entry external dcl 1-86 gtss_drl_spawn_ 000000 constant entry external dcl 1-87 gtss_drl_spawn_$gtss_drl_pasflr_ 000000 constant entry external dcl 1-88 gtss_drl_stoppt_ 000000 constant entry external dcl 1-89 gtss_drl_switch_ 000000 constant entry external dcl 1-90 gtss_drl_sysret_ 000000 constant entry external dcl 1-91 gtss_drl_t_cfio_ 000000 constant entry external dcl 1-92 gtss_drl_t_cmov_ 000000 constant entry external dcl 1-93 gtss_drl_t_err_ 000000 constant entry external dcl 1-94 gtss_drl_t_goto_ 000000 constant entry external dcl 1-95 gtss_drl_t_linl_ 000000 constant entry external dcl 1-96 gtss_drl_t_rscc_ 000000 constant entry external dcl 1-97 gtss_drl_tapein_ 000000 constant entry external dcl 1-98 gtss_drl_task_ 000000 constant entry external dcl 1-99 gtss_drl_termtp_ 000000 constant entry external dcl 1-100 gtss_drl_time_ 000000 constant entry external dcl 1-101 gtss_drun_ 000000 constant entry external dcl 1-102 gtss_dsd_lookup_ 000000 constant entry external dcl 1-103 gtss_dsd_process_ 000000 constant entry external dcl 1-104 gtss_edit_dsd_ 000000 constant entry external dcl 1-105 gtss_expand_pathname_ 000000 constant entry external dcl 1-107 gtss_expand_pathname_$verify_umc 000000 constant entry external dcl 1-108 gtss_ext_$SYstarstar_file_no external static fixed bin(24,0) dcl 4-33 gtss_ext_$aem external static fixed bin(17,0) dcl 4-8 gtss_ext_$aft external static structure level 1 dcl 4-78 gtss_ext_$bad_drl_rtrn external static label variable dcl 4-9 gtss_ext_$com_reg external static structure level 1 dcl 4-45 gtss_ext_$deferred_catalogs_ptr external static pointer dcl 4-11 gtss_ext_$dispose_of_drl external static label variable dcl 4-12 gtss_ext_$drl_rtrn external static label variable array dcl 4-13 gtss_ext_$drm_path external static char(168) unaligned dcl 4-14 gtss_ext_$drun_jid external static char(5) unaligned dcl 4-15 gtss_ext_$event_channel external static fixed bin(71,0) dcl 4-16 gtss_ext_$fast_lib external static structure level 1 dcl 4-98 gtss_ext_$finished external static label variable dcl 4-17 gtss_ext_$flags external static structure level 1 dcl 4-60 gtss_ext_$gdb_name external static char(8) unaligned dcl 4-18 gtss_ext_$get_line external static entry variable dcl 4-19 gtss_ext_$gtss_slave_area_seg external static pointer array dcl 4-20 gtss_ext_$hcs_work_area_ptr external static pointer dcl 4-21 gtss_ext_$homedir external static char(64) unaligned dcl 4-22 gtss_ext_$last_k_was_out external static bit(1) dcl 4-23 gtss_ext_$mcfc external static structure level 1 dcl 4-109 gtss_ext_$pdir external static varying char(168) dcl 4-24 gtss_ext_$popup_from_pi external static label variable dcl 4-25 gtss_ext_$ppt external static pointer dcl 4-94 gtss_ext_$process_type external static fixed bin(17,0) dcl 4-26 gtss_ext_$put_chars external static entry variable dcl 4-27 gtss_ext_$restart_from_pi external static label variable dcl 4-28 gtss_ext_$restart_seg_ptr external static pointer dcl 4-29 gtss_ext_$sig_ptr external static pointer dcl 4-30 gtss_ext_$stack_level_ external static fixed bin(17,0) dcl 4-31 gtss_ext_$statistics external static structure level 1 dcl 4-72 gtss_ext_$suspended_process external static bit(1) unaligned dcl 4-32 gtss_ext_$user_id external static varying char(26) dcl 4-34 gtss_ext_$work_area_ptr external static pointer dcl 4-35 gtss_fault_processor_ 000000 constant entry external dcl 1-109 gtss_fault_processor_$timer_runout 000000 constant entry external dcl 1-111 gtss_filact_error_status_ 000000 constant entry external dcl 1-112 gtss_filact_funct02_ 000000 constant entry external dcl 1-113 gtss_filact_funct03_ 000000 constant entry external dcl 1-114 gtss_filact_funct04_ 000000 constant entry external dcl 1-115 gtss_filact_funct05_ 000000 constant entry external dcl 1-116 gtss_filact_funct08_ 000000 constant entry external dcl 1-117 gtss_filact_funct10_ 000000 constant entry external dcl 1-118 gtss_filact_funct11_ 000000 constant entry external dcl 1-119 gtss_filact_funct14_ 000000 constant entry external dcl 1-120 gtss_filact_funct18_ 000000 constant entry external dcl 1-121 gtss_filact_funct19_ 000000 constant entry external dcl 1-122 gtss_filact_funct21_ 000000 constant entry external dcl 1-123 gtss_filact_funct22_ 000000 constant entry external dcl 1-124 gtss_interp_prim_ 000000 constant entry external dcl 1-126 gtss_interp_prim_$callss 000000 constant entry external dcl 1-127 gtss_interp_prim_$sysret 000000 constant entry external dcl 1-128 gtss_interp_prim_$t_goto 000000 constant entry external dcl 1-129 gtss_ios_change_size_ 000000 constant entry external dcl 1-130 gtss_ios_close_ 000000 constant entry external dcl 1-131 gtss_ios_exchange_names_ 000000 constant entry external dcl 1-132 gtss_ios_initialize_ 000000 constant entry external dcl 1-133 gtss_ios_io_ 000000 constant entry external dcl 1-134 gtss_ios_open_ 000000 constant entry external dcl 1-135 gtss_ios_position_ 000000 constant entry external dcl 1-136 gtss_mcfc_$close 000000 constant entry external dcl 1-139 gtss_mcfc_$delete 000000 constant entry external dcl 1-137 gtss_mcfc_$open 000000 constant entry external dcl 1-138 gtss_mcfc_empty 000000 constant entry external dcl 1-106 gtss_mcfc_init_ 000000 constant entry external dcl 1-125 gtss_read_starCFP_ 000000 constant entry external dcl 1-140 gtss_read_starCFP_$last_os 000000 constant entry external dcl 1-141 gtss_run_subsystem_ 000000 constant entry external dcl 1-142 gtss_run_subsystem_$finish 000000 constant entry external dcl 1-143 gtss_run_subsystem_$restor 000000 constant entry external dcl 1-144 gtss_run_subsystem_$restor_perm 000000 constant entry external dcl 1-145 gtss_set_slave_ 000000 constant entry external dcl 1-146 gtss_set_slave_$load_bar 000000 constant entry external dcl 1-147 gtss_update_safe_store_ 000000 constant entry external dcl 1-148 gtss_verify_access_ 000000 constant entry external dcl 1-149 gtss_verify_access_$check_forced_access 000000 constant entry external dcl 1-150 iox_$get_line 000000 constant entry external dcl 116 iox_$user_input external static pointer dcl 118 null builtin function dcl 125 trap_off defined bit(1) unaligned dcl 2-12 user_code defined bit(1) unaligned dcl 2-11 NAMES DECLARED BY EXPLICIT CONTEXT. action_1 000274 constant entry internal dcl 60 ref 127 127 action_2 000332 constant entry internal dcl 67 ref 127 action_3 000370 constant entry internal dcl 74 ref 127 127 127 action_4 000451 constant entry internal dcl 84 ref 127 action_5 000460 constant entry internal dcl 88 ref 127 bug_complaint 000541 constant entry internal dcl 98 ref 63 70 79 93 gtss_CFP_output_ 000071 constant entry external dcl 9 NAME DECLARED BY CONTEXT OR IMPLICATION. substr builtin function ref 49 49 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 1032 1066 624 1042 Length 1402 624 34 277 206 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME gtss_CFP_output_ 146 external procedure is an external procedure. action_1 74 internal procedure is assigned to an entry variable. action_2 74 internal procedure is assigned to an entry variable. action_3 74 internal procedure is assigned to an entry variable. action_4 64 internal procedure is assigned to an entry variable. action_5 74 internal procedure is assigned to an entry variable. bug_complaint 112 internal procedure is called by several nonquick procedures. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME gtss_CFP_output_ 000100 code gtss_CFP_output_ 000102 proper_rtn gtss_CFP_output_ 000106 rtn_table gtss_CFP_output_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. alloc_cs call_var call_ext_out_desc call_ext_out call_int_other return shorten_stack ext_entry int_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. gtss_abort_subsystem_ gtss_find_cond_frame_ gtss_write_starCFP_ ioa_ iox_$put_chars THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. gtss_ext_$CFP_bits gtss_ext_$db gtss_starCF_$FILE gtss_ust_ext_$ust iox_$user_output LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 9 000064 124 000076 127 000077 45 000156 46 000160 47 000204 48 000214 49 000220 149 000271 60 000273 62 000301 63 000317 64 000330 67 000331 69 000337 70 000355 71 000366 74 000367 76 000375 77 000413 79 000434 81 000447 84 000450 86 000456 88 000457 90 000465 91 000503 93 000524 95 000537 98 000540 101 000546 102 000551 107 000623 ----------------------------------------------------------- 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