COMPILATION LISTING OF SEGMENT gtss_CFP_abort_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1215.2 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * * 4* * Copyright, (C) Honeywell Information Systems Inc., 1981 * 5* * * 6* * * 7* *********************************************************** */ 8 9 gtss_CFP_abort_: proc; 10 11 12 /** 13* Author: Al Dupuis 06/21/79 14* 15* This procedure is called by gtss_abort_subsystem_ when an error 16* has occured which will terminate command file processing (CFP). 17* A given *CF file (of which there may be *CFP *CFQ *CFR *CFS and *CFT) 18* will contain it's own bcd label table, and the information to 19* restore the previous (more inner) file. This procedure sets 20* the restore information to the ..abort label sector number, 21* if it is present, if not, it sets it to the COUT sector so that 22* the file will terminate. 23***/ 24 25 26 27 /* read the current *CF file's COUT sector */ 28 gtss_starCF_$FILE.OP2.Device_Command = read_cmd; 29 file_number = gtss_starCF_$FILE.cf.aft_indx; 30 gtss_starCF_$FILE.Seek_Address = gtss_ust.lcfst.initial_sect_out - 1; 31 call read_cout; 32 if status ^= 0 then return; 33 cout_ptr = addr (no_characters); 34 scp = addr (save_cout); 35 36 /* set the next input sector to be the $*$lbl ..abort sector if present, 37* if not set it to the COUT sector so this *CF file will terminate */ 38 if label_present () 39 then gtss_ust.lcfio.sect_in = new_sect_in; 40 else gtss_ust.lcfio.sect_in = gtss_ust.lcfst.initial_sect_out - 1; 41 42 i = 1; 43 highest_level = 0; 44 45 /* if we're not in nested CFP then we're done */ 46 do a = "Q", "R", "S", "T"; 47 call gtss_aft_$find ("*CF" || a, fn, code); 48 if code = 0 then do; 49 file_no (i) = fn; 50 highest_level = highest_level + 1; 51 end; 52 i = i + 1; 53 end; 54 55 if highest_level = 0 then return; 56 57 highest_level = highest_level + 1; 58 file_no (highest_level) = gtss_starCF_$FILE.cf.aft_indx; 59 60 /* save the current COUT sector */ 61 save_cout = cout_ptr -> cout; 62 old_seek_no = gtss_ust.lcfst.initial_sect_out - 1; 63 64 do i = highest_level to 2 by -1; 65 66 /* read the previous (more inner) COUT sector */ 67 file_number = file_no (i - 1); 68 new_seek_no = scp -> c_lcfst.init_sect_out - 1; 69 gtss_starCF_$FILE.Seek_Address = scp -> c_lcfst.init_sect_out - 1; 70 gtss_starCF_$FILE.OP2.Device_Command = read_cmd; 71 call read_cout; 72 if status ^= 0 then return; 73 74 /* if it has a ..abort label, set the saved COUT restore information 75* to reflect it, else set the restore info to it's COUT sector */ 76 if label_present () 77 then scp -> c_lcfio.sector_in = new_sect_in; 78 else scp -> c_lcfio.sector_in = scp -> c_lcfst.init_sect_out - 1; 79 temp_buffer = cout_ptr -> cout; 80 cout_ptr -> cout = save_cout; 81 82 /* and write the COUT sector with restore information */ 83 gtss_starCF_$FILE.OP2.Device_Command = write_cmd; 84 file_number = file_no (i); 85 gtss_starCF_$FILE.Seek_Address = old_seek_no; 86 call write_cout; 87 if status ^= 0 then return; 88 old_seek_no = new_seek_no; 89 save_cout = temp_buffer; 90 end; 91 92 label_present: proc returns (bit (1)); 93 94 do idx = 1 to hbound (cout_ptr -> label_table, 1); 95 if abort_label = cout_ptr -> label_name (idx) then do; 96 new_sect_in = cout_ptr -> label_pos (idx); 97 cout_ptr -> label_name (idx) = "0"b; 98 cout_ptr -> label_pos (idx) = 0; 99 return ("1"b); 100 end; 101 end; 102 return ("0"b); 103 104 dcl idx fixed bin (24); 105 end; /* label_present */ 106 107 read_cout: write_cout: proc; 108 109 status = 0; 110 call gtss_ios_io_ ( /* read/write the cout sector from *CFP */ 111 file_number, 112 addr (select_sequence), 113 addr (select_sequence), 114 fixed (rel (addr (gtss_starCF_$FILE.cf))), 115 status, 116 code); 117 if status ^= 0 118 then call ioa_ ("gtss_CFP_abort_:" || 119 "Unable to read/write cout sector (status ^i)", 120 status); 121 122 end; /* read_write_cout */ 123 124 dcl a char (1); 125 dcl abort_label bit (54) static int options (constant) init ("333321224651632020"b3); /* bcd ..ABORT */ 126 dcl code fixed bin (35); 127 dcl cout char (253) based; 128 dcl cout_ptr ptr init (null()); 129 dcl file_name (5) char (4) init ("*CFP", "*CFQ", "*CFR", "*CFS", "*CFT"); 130 dcl file_no (5) fixed bin (24); 131 dcl file_number fixed bin (24); 132 dcl fn fixed bin (24); 133 dcl gtss_fail condition ext; 134 dcl highest_level fixed bin (24); 135 dcl i fixed bin (24); 136 dcl ioa_ entry options (variable); 137 dcl new_sect_in fixed bin (18) unsigned; 138 dcl new_seek_no fixed bin (18) unsigned; 139 dcl old_seek_no fixed bin (18) unsigned; 140 dcl save_cout char (253); 141 dcl scp ptr init (null()); 142 dcl status fixed bin (24); 143 dcl temp_buffer char (253); 144 1 1 /* BEGIN INCLUDE FILE gtss_deferred_queue.incl.pl1 */ 1 2 /* 1 3* Created: (Dupuis Multics) 06/26/79 0848.7 mst Tue 1 4* Changed: Ron Barstad 84-11-29 dq_catalog.dcelp changed to fixed bin 35 (was 36 unsigned) 1 5**/ 1 6 dcl 1 dq_header based, 1 7 2 dhcks fixed bin (36) unsigned unaligned, 1 8 2 dhnam fixed bin (36) unsigned unaligned, 1 9 2 dhdat bit (36) unaligned, 1 10 2 dhtim fixed bin (36) unsigned unaligned, 1 11 2 dhbsn, 1 12 3 no_of_cea fixed bin (18) unsigned unaligned, 1 13 3 tss_ssn fixed bin (18) unsigned unaligned, 1 14 2 dhseq, 1 15 3 no_of_ceiu fixed bin (18) unsigned unaligned, 1 16 3 no_of_dss fixed bin (18) unsigned unaligned, 1 17 2 dhtns, 1 18 3 no_of_srts fixed bin (18) unsigned unaligned, 1 19 3 no_of_dsi fixed bin (18) unsigned unaligned, 1 20 2 dhrns fixed bin (36) unsigned unaligned; 1 21 1 22 1 23 dcl 1 dq_catalog based, 1 24 2 dcjid, 1 25 3 bcd_job_id bit (30) unaligned, 1 26 3 job_status fixed bin (6) unsigned unaligned, 1 27 2 dcseq, 1 28 3 jsn fixed bin (18) unsigned unaligned, 1 29 3 reserved bit (1) unaligned, 1 30 3 init_seq fixed bin (17) unsigned unaligned, 1 31 2 dcuid bit (72) unaligned, 1 32 2 dcdsd bit (36) unaligned, 1 33 2 dcdst fixed bin (35) unaligned, 1 34 2 dcelp fixed bin (35) unaligned, 1 35 2 dcusr, 1 36 3 not_used bit (18) unaligned, 1 37 3 b18_35_lswth bit (18) unaligned; 1 38 1 39 dcl 1 dq_dib based, 1 40 2 dbdat bit (36) unaligned, 1 41 2 dbtim bit (36) unaligned, 1 42 2 dblin fixed bin (36) unaligned unsigned, 1 43 2 dberr, 1 44 3 dbalt_cc fixed bin (18) unaligned unsigned, 1 45 3 dbdsc_cc fixed bin (18) unaligned unsigned, 1 46 2 dbptr, 1 47 3 dbdsc_ro fixed bin (18) unaligned unsigned, 1 48 3 ofn_ro fixed bin (17) unaligned, 1 49 2 dbflg, 1 50 3 alloc_perm bit (9) unaligned, 1 51 3 del_char char (1) unaligned, 1 52 3 f_res bit (1) unaligned, 1 53 3 f_sub bit (1) unaligned, 1 54 3 f_arg bit (1) unaligned, 1 55 3 f_del bit (1) unaligned, 1 56 3 f_exc bit (1) unaligned, 1 57 3 f_inc bit (1) unaligned, 1 58 3 f_lni bit (1) unaligned, 1 59 3 f_alt bit (1) unaligned, 1 60 3 f_fnq bit (1) unaligned, 1 61 3 f_ucs bit (1) unaligned, 1 62 3 f_lcs bit (1) unaligned, 1 63 3 arg_char char (1) unaligned, 1 64 2 rest (58) bit (36) unaligned; 1 65 1 66 dcl 1 cout_sector based, 1 67 2 filler_1 (6) bit (36), 1 68 2 c_lcfio, 1 69 3 sector_out fixed bin (18) unaligned unsigned, 1 70 3 sector_in fixed bin (18) unaligned unsigned, 1 71 2 c_lcfst, 1 72 3 init_sect_out fixed bin (18) unaligned unsigned, 1 73 3 start_term fixed bin (18) unaligned unsigned, 1 74 2 filler_2 (40) bit (36), 1 75 2 label_table (8), 1 76 3 label_name bit (54), 1 77 3 label_pos fixed bin (18) unaligned unsigned; 1 78 1 79 /* END INCLUDE FILE gtss_deferred_queue.incl.pl1 */ 145 146 2 1 /* BEGIN INCLUDE FILE gtss_starCF_.incl.pl1 */ 2 2 /* 2 3* Created: (Wardd Multics) 03/20/79 1816.6 mst Tue 2 4**/ 2 5 2 6 /* 2 7* gtss_CFP_input_ data structure to provide 2 8* for accessing the current command file. 2 9* 2 10* Changed: Al Dupuis 05/17/79 to get rid of nested get_line, put_chars concept. 2 11**/ 2 12 dcl 1 gtss_starCF_$FILE aligned static ext 2 13 , 3 select_sequence 2 14 , 4 OP1 /* Seek operation. */ 2 15 , 5 Device_Command bit(06)unal 2 16 , 5 zeroes_1 fixed bin(12)unsigned unal 2 17 , 5 IOC_Command bit(05)unal 2 18 , 5 zeroes_2 fixed bin(01)unsigned unal 2 19 , 5 Control fixed bin(06)unsigned unal 2 20 , 5 Count fixed bin(06)unsigned unal 2 21 2 22 , 4 ID1 2 23 , 5 fcb_loc bit(18)unal 2 24 , 5 DCW_list_loc bit(18)unal 2 25 2 26 , 4 OP2 /* Write opteration. */ 2 27 , 5 Device_Command bit(06)unal 2 28 , 5 zeroes_1 fixed bin(12)unsigned unal 2 29 , 5 IOC_Command bit(05)unal 2 30 , 5 zeroes_2 fixed bin(01)unsigned unal 2 31 , 5 Control fixed bin(06)unsigned unal 2 32 , 5 Count fixed bin(06)unsigned unal 2 33 2 34 , 4 ID2 2 35 , 5 fcb_loc bit(18)unal 2 36 , 5 DCW_list_loc bit(18)unal 2 37 2 38 , 4 RETURN_WORD 2 39 , 5 Status_loc bit(18)unal 2 40 , 5 Courtesy_Call_loc bit(18)unal 2 41 2 42 , 3 Seek_Word 2 43 , 4 Seek_loc bit(18)unal 2 44 , 4 Seek_count fixed bin(18)unsigned unal 2 45 , 3 Seek_Address fixed bin(35) 2 46 , 3 STATUS bit(72) unal 2 47 2 48 , 3 DCW 2 49 , 4 memory_loc bit(18)unal 2 50 , 4 zeroes_3 fixed bin(03)unsigned unal 2 51 , 4 action_code fixed bin(03)unsigned unal 2 52 , 4 word_count fixed bin(12)unsigned unal 2 53 2 54 , 3 RECORD 2 55 , 4 no_characters fixed bin(18)unsigned unal 2 56 , 4 zeroes_4 bit(18)unal 2 57 , 4 chars char(252) 2 58 2 59 /* Stack to accomodate nested command file processing. */ 2 60 , 3 cf 2 61 , 4 top fixed bin(24) 2 62 , 4 aft_indx fixed bin(24) 2 63 , 4 first_time bit (1) unaligned 2 64 , 4 exclude_on bit (1) unaligned 2 65 ; 2 66 2 67 /* END INCLUDE FILE gtss_starCF_.incl.pl1 */ 147 148 3 1 /* BEGIN INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 3 2 /* 3 3* Created: (Wardd Multics) 06/30/78 1624.8 mst Fri 3 4* Modified: Ron Barstad 84-02-24 Fixed wrong and obsolete entries 3 5**/ 3 6 3 7 /** gtss external entry variables. **/ 3 8 dcl com_err_ entry() options(variable); 3 9 dcl gtss_CFP_abort_ entry options(variable); 3 10 dcl gtss_CFP_break_ entry options(variable); 3 11 dcl gtss_CFP_input_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 3 12 dcl gtss_CFP_output_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 3 13 dcl gtss_abandon_CFP_ entry options(variable); 3 14 dcl gtss_abort_dump_ entry (fixed bin(18)); 3 15 dcl gtss_abort_subsystem_ entry options (variable); 3 16 dcl gtss_abort_subsystem_$not_imp entry (ptr, fixed bin(24)); 3 17 dcl gtss_abs_login_banner_ entry() returns(char(*)); 3 18 dcl gtss_abs_logout_banner_ entry() returns(char(*)); 3 19 dcl gtss_abs_$abs_equiv entry options(variable); 3 20 dcl gtss_abs_$cpu_runout entry (ptr, char(4)); 3 21 dcl gtss_abs_$create_absin entry() returns(char(*)); 3 22 dcl gtss_abs_$dabt_check entry (ptr, char(4)); 3 23 dcl gtss_abs_$get_id entry (char(5)) returns(char(19)); 3 24 dcl gtss_abs_$get_drm entry() returns(char(*)); 3 25 dcl gtss_adjust_size_ entry (ptr); 3 26 dcl gtss_aft_$add entry (char(8), fixed bin(24), fixed bin(35)); 3 27 dcl gtss_aft_$delete entry (char(8), fixed bin(24), fixed bin(35)); 3 28 dcl gtss_aft_$find entry (char(8), fixed bin(24), fixed bin(35)); 3 29 dcl gtss_aft_$initialize entry (fixed bin(35)); 3 30 dcl gtss_ascii_bcd_ entry (ptr, fixed bin, ptr); 3 31 dcl gtss_attributes_mgr_$get entry (ptr, fixed bin(35)); 3 32 dcl gtss_attributes_mgr_$set entry (ptr, fixed bin(35)); 3 33 dcl gtss_bcd_ascii_ entry (ptr, fixed bin(24), ptr); 3 34 dcl gtss_bcd_ascii_$lc entry (ptr, fixed bin(24), ptr); 3 35 dcl gtss_break_vector_ entry (); 3 36 dcl gtss_break_vector_$drl_in_progress entry() returns(bit(1)); 3 37 dcl gtss_break_vector_$status entry() returns(bit(1)); 3 38 dcl gtss_build_ entry options(variable); 3 39 dcl gtss_com_err_ entry options(variable); 3 40 dcl gtss_derail_processor_ entry (ptr, char(*), ptr, ptr, bit(1) aligned) /* called at fault time instead of signal_ */; 3 41 dcl gtss_derail_processor_$set entry options(variable); 3 42 dcl gtss_dq_$catp entry (char (5), ptr, fixed bin (18) unsigned); 3 43 dcl gtss_dq_$create entry (bit(1)); 3 44 dcl gtss_dq_$dibp entry (char(5), ptr); 3 45 dcl gtss_dq_$entries_info entry (ptr, fixed bin (18) unsigned, fixed bin (18) unsigned); 3 46 dcl gtss_dq_$hdrp entry (ptr); 3 47 dcl gtss_dq_$mod_js entry (char(5), fixed bin (6) unsigned, bit (1)); 3 48 dcl gtss_dq_$open_exc entry (bit(1)); 3 49 dcl gtss_dq_$open_gen entry (bit(1)); 3 50 dcl gtss_drl_abort_ entry (ptr, fixed bin); 3 51 dcl gtss_drl_addmem_ entry (ptr, fixed bin); 3 52 dcl gtss_drl_callss_ entry (ptr, fixed bin); 3 53 dcl gtss_drl_corfil_ entry (ptr, fixed bin); 3 54 dcl gtss_drl_defil_ entry (ptr, fixed bin); 3 55 dcl gtss_drl_defil_$subr entry (ptr, ptr, ptr); 3 56 dcl gtss_drl_dio_ entry (ptr, fixed bin); 3 57 dcl gtss_drl_drlimt_ entry (ptr, fixed bin); 3 58 dcl gtss_drl_drlsav_ entry (ptr, fixed bin); 3 59 dcl gtss_drl_filact_ entry (ptr, fixed bin); 3 60 dcl gtss_drl_filsp_ entry (ptr, fixed bin); 3 61 dcl gtss_drl_grow_ entry (ptr, fixed bin); 3 62 dcl gtss_drl_gwake_ entry (ptr, fixed bin); 3 63 dcl gtss_drl_jsts_ entry (ptr, fixed bin); 3 64 dcl gtss_drl_kin_ entry (ptr, fixed bin); 3 65 dcl gtss_drl_kotnow_ entry (ptr, fixed bin); 3 66 dcl gtss_drl_kotnow_$gtss_drl_kout_ entry (ptr, fixed bin); 3 67 dcl gtss_drl_koutn_ entry (ptr, fixed bin); 3 68 dcl gtss_drl_morlnk_ entry (ptr, fixed bin); 3 69 dcl gtss_drl_msub_ entry (ptr, fixed bin); 3 70 dcl gtss_drl_objtim_ entry (ptr, fixed bin); 3 71 dcl gtss_drl_part_ entry (ptr, fixed bin); 3 72 dcl gtss_drl_pasaft_ entry (ptr, fixed bin); 3 73 dcl gtss_drl_pasdes_ entry (ptr, fixed bin); 3 74 dcl gtss_drl_pasust_ entry (ptr, fixed bin); 3 75 dcl gtss_drl_pdio_ entry (ptr, fixed bin); 3 76 dcl gtss_drl_prgdes_ entry (ptr, fixed bin); 3 77 dcl gtss_drl_pseudo_ entry (ptr, fixed bin); 3 78 dcl gtss_drl_relmem_ entry (ptr, fixed bin); 3 79 dcl gtss_drl_restor_ entry (ptr, fixed bin); 3 80 dcl gtss_drl_retfil_ entry (ptr, fixed bin); 3 81 dcl gtss_drl_return_ entry (ptr, fixed bin); 3 82 dcl gtss_drl_rew_ entry (ptr, fixed bin); 3 83 dcl gtss_drl_rstswh_ entry (ptr, fixed bin); 3 84 dcl gtss_drl_setlno_ entry (ptr, fixed bin); 3 85 dcl gtss_drl_setswh_ entry (ptr, fixed bin); 3 86 dcl gtss_drl_snumb_ entry (ptr, fixed bin); 3 87 dcl gtss_drl_spawn_ entry (ptr, fixed bin); 3 88 dcl gtss_drl_spawn_$gtss_drl_pasflr_ entry (ptr, fixed bin); 3 89 dcl gtss_drl_stoppt_ entry (ptr, fixed bin); 3 90 dcl gtss_drl_switch_ entry (ptr, fixed bin); 3 91 dcl gtss_drl_sysret_ entry (ptr, fixed bin); 3 92 dcl gtss_drl_t_cfio_ entry (ptr, fixed bin); 3 93 dcl gtss_drl_t_cmov_ entry (ptr, fixed bin); 3 94 dcl gtss_drl_t_err_ entry (ptr, fixed bin); 3 95 dcl gtss_drl_t_goto_ entry (ptr, fixed bin); 3 96 dcl gtss_drl_t_linl_ entry (ptr, fixed bin); 3 97 dcl gtss_drl_t_rscc_ entry (ptr, fixed bin); 3 98 dcl gtss_drl_tapein_ entry (ptr, fixed bin); 3 99 dcl gtss_drl_task_ entry (ptr, fixed bin); 3 100 dcl gtss_drl_termtp_ entry (ptr, fixed bin); 3 101 dcl gtss_drl_time_ entry (ptr, fixed bin); 3 102 dcl gtss_drun_ entry (bit(1)); 3 103 dcl gtss_dsd_lookup_ entry (char(8) var) returns(fixed bin(24)); 3 104 dcl gtss_dsd_process_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 3 105 dcl gtss_edit_dsd_ entry (ptr, fixed bin(21)) returns(fixed bin(24)); 3 106 dcl gtss_mcfc_empty entry (char(*) var); 3 107 dcl gtss_expand_pathname_ entry (ptr, char(*), char(*), fixed bin(35)); 3 108 dcl gtss_expand_pathname_$verify_umc entry (ptr, char(*), char(*), bit(18), fixed bin(35)); 3 109 dcl gtss_fault_processor_ entry options(variable); 3 110 dcl gtss_find_cond_frame_ entry (char(32) var) returns(ptr); 3 111 dcl gtss_fault_processor_$timer_runout entry (ptr, char(*)); 3 112 dcl gtss_filact_error_status_ entry (fixed bin(35))returns(bit(12)); 3 113 dcl gtss_filact_funct02_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 114 dcl gtss_filact_funct03_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 115 dcl gtss_filact_funct04_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 116 dcl gtss_filact_funct05_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 117 dcl gtss_filact_funct08_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 118 dcl gtss_filact_funct10_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 119 dcl gtss_filact_funct11_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 120 dcl gtss_filact_funct14_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 121 dcl gtss_filact_funct18_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 122 dcl gtss_filact_funct19_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 123 dcl gtss_filact_funct21_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 124 dcl gtss_filact_funct22_ entry (ptr, bit(18), ptr, ptr, ptr, fixed bin(35)); 3 125 dcl gtss_mcfc_init_ entry (char(*) var); 3 126 dcl gtss_interp_prim_ entry options(variable); 3 127 dcl gtss_interp_prim_$callss entry (char(4), ptr); 3 128 dcl gtss_interp_prim_$sysret entry options(variable); 3 129 dcl gtss_interp_prim_$t_goto entry (char(4)); 3 130 dcl gtss_ios_change_size_ entry (fixed bin(24), fixed bin(24), bit(1), fixed bin(24), fixed bin(35)); 3 131 dcl gtss_ios_close_ entry (fixed bin(24), ptr, fixed bin(35)); 3 132 dcl gtss_ios_exchange_names_ entry (fixed bin(24), fixed bin(24), fixed bin(24), fixed bin(35)); 3 133 dcl gtss_ios_initialize_ entry options(variable); 3 134 dcl gtss_ios_io_ entry (fixed bin(24), ptr, ptr, fixed bin(24), fixed bin(24), fixed bin(35)); 3 135 dcl gtss_ios_open_ entry (fixed bin(24), char(168), char(32), bit(6), bit(1), ptr, ptr, fixed bin(35)); 3 136 dcl gtss_ios_position_ entry (fixed bin(24), fixed bin(24), fixed bin(24), bit(6), ptr); 3 137 dcl gtss_mcfc_$delete entry (fixed bin(24), char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 3 138 dcl gtss_mcfc_$open entry (char(*), char(*), bit(6), bit(36) aligned, ptr, fixed bin(35)); 3 139 dcl gtss_mcfc_$close entry (char(*), char(*), bit(36) aligned, ptr, fixed bin(35)); 3 140 dcl gtss_read_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 3 141 dcl gtss_read_starCFP_$last_os entry (ptr, ptr, fixed bin(21), fixed bin(21), fixed bin(35)); 3 142 dcl gtss_run_subsystem_ entry (fixed bin(24)); 3 143 dcl gtss_run_subsystem_$finish entry options(variable); 3 144 dcl gtss_run_subsystem_$restor entry (fixed bin(24), ptr); 3 145 dcl gtss_run_subsystem_$restor_perm entry (fixed bin(24), ptr, fixed bin(18)); 3 146 dcl gtss_set_slave_ entry (fixed bin (24), ptr); 3 147 dcl gtss_set_slave_$load_bar entry (fixed bin (17)); 3 148 dcl gtss_update_safe_store_ entry (ptr); 3 149 dcl gtss_verify_access_ entry (char(*), char(*), fixed bin(24), bit(6), bit(12) aligned); 3 150 dcl gtss_verify_access_$check_forced_access entry (char(*), char(*), fixed bin(24)); 3 151 dcl gtss_write_starCFP_ entry (ptr, ptr, fixed bin(21), fixed bin(35)); 3 152 /* END INCLUDE FILE gtss_entry_dcls.incl.pl1 */ 149 150 4 1 /* BEGIN INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 4 2 /* UST: User Status Table 4 3* definitions based on 4 4* System Tables, Order number DD14-01E, January 1981 4 5* Section 15, Time Sharing System 4 6* 4 7* Authors: Robert J. Grimes Created 4 8* - Albert N. Kepner 1978 4 9* - Robert M. May 4 10* - David B. Ward 4 11* Change: Dave Ward 02/23/79 Level 4 numbering. 4 12* Change: Ron Barstad 83-07-12 Repaired damaged formating and word offset comments 4 13* Brought up to 4JS3 functionality 4 14**/ 4 15 /* octal word offsets of entries */ 4 16 dcl 1 gtss_ust_ext_$ust aligned ext, 4 17 3 gtss_ust, 4 18 /* 0-1 */ 4 lid bit (72), 4 19 /* 2 */ 4 lstp bit (36), 4 20 /* 3 */ 4 ltin bit (36), 4 21 /* 4 */ 4 lstio, 4 22 5 no_of_chars_by_8 fixed bin (18) uns unal, 4 23 5 no_of_disk_io fixed bin (18) uns unal, 4 24 /* 5 */ 4 lsnub bit (36), 4 25 /* 6-7 */ 4 lchg bit (72), 4 26 /* 10 */ 4 lbuf, 4 27 5 address bit (18)unaligned, 4 28 5 tally bit (1)unaligned, 4 29 5 terminal_type bit (5)unaligned, 4 30 5 station_id bit (12)unaligned, 4 31 /* 11-12 */ 4 liost (0:1) bit (36), 4 32 /* 13 */ 4 lcc bit (36), 4 33 /* 14 */ 4 lback, 4 34 5 fill1 bit (18) unaligned, 4 35 5 gwake fixed bin (17) unaligned, 4 36 /* 15 */ 4 lflag, 4 37 5 mp_list bit (18) unaligned, 4 38 5 flags unaligned, 4 39 6 b18 bit (1) unaligned, 4 40 6 b19 bit (1) unaligned, 4 41 6 b20 bit (1) unaligned, 4 42 6 b21 bit (1) unaligned, 4 43 6 b22 bit (1) unaligned, 4 44 6 b23 bit (1) unaligned, 4 45 6 b24 bit (1) unaligned, 4 46 6 b25 bit (1) unaligned, 4 47 6 b26 bit (1) unaligned, 4 48 6 b27 bit (1) unaligned, 4 49 6 b28 bit (1) unaligned, 4 50 6 b29 bit (1) unaligned, 4 51 6 b30 bit (1) unaligned, 4 52 6 b31 bit (1) unaligned, 4 53 6 b32 bit (1) unaligned, 4 54 6 b33 bit (1) unaligned, 4 55 6 b34 bit (1) unaligned, 4 56 6 b35 bit (1) unaligned, 4 57 /* 16 */ 4 lkdss bit (36), 4 58 /* 17 */ 4 lfile, 4 59 5 program_stack fixed bin (17) unal, 4 60 5 file_list_ptr bit (18) unal, 4 61 /* 20 */ 4 lttys bit (36), 4 62 /* 21 */ 4 lswth, 4 63 5 b0 bit (1) unaligned, 4 64 5 b1 bit (1) unaligned, 4 65 5 b2 bit (1) unaligned, 4 66 5 b3 bit (1) unaligned, 4 67 5 b4 bit (1) unaligned, 4 68 5 b5 bit (1) unaligned, 4 69 5 b6 bit (1) unaligned, 4 70 5 b7 bit (1) unaligned, 4 71 5 b8 bit (1) unaligned, 4 72 5 b9 bit (1) unaligned, 4 73 5 b10 bit (1) unaligned, 4 74 5 b11 bit (1) unaligned, 4 75 5 b12 bit (1) unaligned, 4 76 5 b13 bit (1) unaligned, 4 77 5 b14 bit (1) unaligned, 4 78 5 b15 bit (1) unaligned, 4 79 5 b16 bit (1) unaligned, 4 80 5 b17 bit (1) unaligned, 4 81 5 b18 bit (1) unaligned, 4 82 5 b19 bit (1) unaligned, 4 83 5 b20 bit (1) unaligned, 4 84 5 b21 bit (1) unaligned, 4 85 5 b22 bit (1) unaligned, 4 86 5 b23 bit (1) unaligned, 4 87 5 b24 bit (1) unaligned, 4 88 5 b25 bit (1) unaligned, 4 89 5 b26 bit (1) unaligned, 4 90 5 b27 bit (1) unaligned, 4 91 5 b28 bit (1) unaligned, 4 92 5 b29 bit (1) unaligned, 4 93 5 b30 bit (1) unaligned, 4 94 5 b31 bit (1) unaligned, 4 95 5 b32 bit (1) unaligned, 4 96 5 b33 bit (1) unaligned, 4 97 5 b34 bit (1) unaligned, 4 98 5 b35 bit (1) unaligned, 4 99 /* 22 */ 4 lsize, 4 100 5 bar fixed bin (17) unaligned, 4 101 5 limit bit (18) unaligned, 4 102 /* 23... */ 4 lswap, 4 103 5 fill bit (18) unal, 4 104 5 size bit (18) unal, 4 105 /* ...24 */ 4 transfer_cell bit (36) unal, 4 106 /* 25 */ 4 lerrm bit (36), 4 107 /* 26-37 */ 4 lcfil (0:9) bit (36), 4 108 /* 40 */ 4 lsybc, 4 109 5 b0_17 fixed bin (17) unaligned, 4 110 5 b18_35 fixed bin (17) unaligned, 4 111 /* 41-42 */ 4 lstem (0:1) bit (36), 4 112 /* 43 */ 4 lcals, 4 113 5 b0_17 fixed bin (17) unaligned, 4 114 5 b18_35 bit (18) unaligned, 4 115 /* 44-51 */ 4 subsystems (3), 4 116 5 content_lswap, 4 117 6 fill bit (18) unal, 4 118 6 size bit (18) unal, 4 119 5 tally_address fixed bin (17) unaligned, 4 120 5 ss_flags bit (18) unaligned, 4 121 /* 52 */ 4 ltalc, 4 122 5 tod fixed bin (17) unaligned, 4 123 5 startup fixed bin (17) unaligned, 4 124 /* 53 */ 4 lspts fixed bin (35), 4 125 /* 54 */ 4 lflg2, 4 126 5 b0 bit (1) unaligned, 4 127 5 b1 bit (1) unaligned, 4 128 5 b2 bit (1) unaligned, 4 129 5 b3 bit (1) unaligned, 4 130 5 b4 bit (1) unaligned, 4 131 5 b5 bit (1) unaligned, 4 132 5 b6 bit (1) unaligned, 4 133 5 b7 bit (1) unaligned, 4 134 5 b8 bit (1) unaligned, 4 135 5 b9 bit (1) unaligned, 4 136 5 b10 bit (1) unaligned, 4 137 5 b11 bit (1) unaligned, 4 138 5 b12 bit (1) unaligned, 4 139 5 b13 bit (1) unaligned, 4 140 5 b14 bit (1) unaligned, 4 141 5 b15 bit (1) unaligned, 4 142 5 b16 bit (1) unaligned, 4 143 5 b17 bit (1) unaligned, 4 144 5 b18 bit (1) unaligned, 4 145 5 b19 bit (1) unaligned, 4 146 5 b20 bit (1) unaligned, 4 147 5 b21 bit (1) unaligned, 4 148 5 b22 bit (1) unaligned, 4 149 5 b23 bit (1) unaligned, 4 150 5 b24 bit (1) unaligned, 4 151 5 b25 bit (1) unaligned, 4 152 5 b26 bit (1) unaligned, 4 153 5 b27 bit (1) unaligned, 4 154 5 b28 bit (1) unaligned, 4 155 5 b29 bit (1) unaligned, 4 156 5 b30 bit (1) unaligned, 4 157 5 b31 bit (1) unaligned, 4 158 5 b32 bit (1) unaligned, 4 159 5 b33 bit (1) unaligned, 4 160 5 b34 bit (1) unaligned, 4 161 5 b35 bit (1) unaligned, 4 162 /* 55-60 */ 4 lsftm (0:3) bit (36), 4 163 /* 61 */ 4 lsprt fixed bin (35), 4 164 /* 62 */ 4 ltrm bit (36), 4 165 /* 63 */ 4 linno fixed bin (35), 4 166 /* 64 */ 4 lincr fixed bin (35), 4 167 /* 65 */ 4 ltdes bit (36), 4 168 /* 66 */ 4 lbptr bit (36), 4 169 /* 67 */ 4 lpptr, 4 170 5 last_file_pat_ptr bin (18) uns unal, 4 171 5 lpptr_reserved bin (18) uns unal, 4 172 /* 70 */ 4 lsclp bit (36), 4 173 /* 71 */ 4 limit fixed bin (35), 4 174 /* 72 */ 4 lacpt, 4 175 5 jout_pat_offset bit (18) unal, 4 176 5 permissions unal, 4 177 6 lodx bit (1) unal, 4 178 6 cardin bit (1) unal, 4 179 6 talk bit (1) unal, 4 180 6 lods bit (1) unal, 4 181 5 cardin_urgency bit (14) unal, 4 182 /* 73 */ 4 ldrl, 4 183 5 ilc bit (18) unaligned, 4 184 5 code fixed bin (17) unaligned, 4 185 /* 74 */ 4 ljsnb bit (36), 4 186 /* 75 */ 4 ltm0 bit (36), 4 187 /* 76 */ 4 ltm1 bit (36), 4 188 /* 77 */ 4 ltm2 bit (36), 4 189 /* 100 */ 4 ltm3 bit (36), 4 190 /* 101 */ 4 ltm4 bit (36), 4 191 /* 102 */ 4 ltm5 bit (36), 4 192 /* 103 */ 4 ltmwt bit (36), 4 193 /* 104 */ 4 ltmrs bit (36), 4 194 /* 105 */ 4 ltc0 bit (36), 4 195 /* 106 */ 4 ltc1 bit (36), 4 196 /* 107 */ 4 ltc2 bit (36), 4 197 /* 110 */ 4 lct3 bit (36), 4 198 /* 111 */ 4 ltc4 bit (36), 4 199 /* 112 */ 4 ltc5 bit (36), 4 200 /* 113 */ 4 ltcw bit (36), 4 201 /* 114 */ 4 lkst bit (36), 4 202 /* 115 */ 4 lkst2 bit (36), 4 203 /* 116 */ 4 lkcc bit (36), 4 204 /* 117 */ 4 lkms bit (36), 4 205 /* 120-121 */ 4 lksdc (0:1) bit (36), 4 206 /* 122 */ 4 lkntp bit (36), 4 207 /* 123 */ 4 lkrdc bit (36), 4 208 /* 124 */ 4 lpqf bit (36), 4 209 /* 125 */ 4 lpqb bit (36), 4 210 /* 126 */ 4 lustl bit (36), 4 211 /* 127 */ 4 ltemp bit (36), 4 212 /* 130 */ 4 lrtll, 4 213 5 word_length fixed bin unaligned, 4 214 5 char_length fixed bin unaligned, 4 215 /* 131 */ 4 ltim bit (36), 4 216 /* 132 */ 4 lcfio, 4 217 5 sect_out fixed bin(18)unsigned unal, 4 218 5 sect_in fixed bin(18)unsigned unal, 4 219 /* 133 */ 4 lcfst, 4 220 5 initial_sect_out fixed bin(18)unsigned unal, 4 221 5 start_term fixed bin(18)unsigned unal, 4 222 /* 134 */ 4 lcmpt bit (36), 4 223 /* 135 */ 4 lcjid bit (36), 4 224 /* 136-137 */ 4 lrcal (0:1) bit (36), 4 225 /* 140 */ 4 lrdta bit (36), 4 226 /* 141 */ 4 lrrsk bit (36), 4 227 /* 142 */ 4 lrskd bit (36), 4 228 /* 143 */ 4 lrcc bit (36), 4 229 /* 144-145 */ 4 lrsts (0:1) bit (36), 4 230 /* 146 */ 4 lrtm bit (36), 4 231 /* 147 */ 4 lswt2, 4 232 5 b0 bit (1) unaligned, 4 233 5 b1 bit (1) unaligned, 4 234 5 b2 bit (1) unaligned, 4 235 5 b3 bit (1) unaligned, 4 236 5 b4 bit (1) unaligned, 4 237 5 b5 bit (1) unaligned, 4 238 5 b6 bit (1) unaligned, 4 239 5 b7 bit (1) unaligned, 4 240 5 b8 bit (1) unaligned, 4 241 5 b9 bit (1) unaligned, 4 242 5 b10 bit (1) unaligned, 4 243 5 b11 bit (1) unaligned, 4 244 5 b12 bit (1) unaligned, 4 245 5 b13 bit (1) unaligned, 4 246 5 b14 bit (1) unaligned, 4 247 5 b15 bit (1) unaligned, 4 248 5 b16 bit (1) unaligned, 4 249 5 b17 bit (1) unaligned, 4 250 5 b18 bit (1) unaligned, 4 251 5 b19 bit (1) unaligned, 4 252 5 b20 bit (1) unaligned, 4 253 5 b21 bit (1) unaligned, 4 254 5 b22 bit (1) unaligned, 4 255 5 b23 bit (1) unaligned, 4 256 5 b24 bit (1) unaligned, 4 257 5 b25 bit (1) unaligned, 4 258 5 b26 bit (1) unaligned, 4 259 5 b27 bit (1) unaligned, 4 260 5 b28 bit (1) unaligned, 4 261 5 b29 bit (1) unaligned, 4 262 5 b30 bit (1) unaligned, 4 263 5 b31 bit (1) unaligned, 4 264 5 b32 bit (1) unaligned, 4 265 5 b33 bit (1) unaligned, 4 266 5 b34 bit (1) unaligned, 4 267 5 b35 bit (1) unaligned, 4 268 /* 150 */ 4 llsnb bit (36), 4 269 /* 151 */ 4 lesq bit (36), 4 270 /* 152-153 */ 4 lumc (0:1) bit (36), 4 271 /* 154-155 */ 4 lfnam (0:1) bit (36), 4 272 /* 156 */ 4 lopts bit (36), 4 273 /* 157 */ 4 licec, 4 274 5 b0_17 bit (18) unaligned, 4 275 5 b18_35 fixed bin (17) unaligned, 4 276 /* 160 */ 4 lflg3, 4 277 5 b0 bit (1) unaligned, 4 278 5 b1 bit (1) unaligned, 4 279 5 b2 bit (1) unaligned, 4 280 5 b3 bit (1) unaligned, 4 281 5 b4 bit (1) unaligned, 4 282 5 b5 bit (1) unaligned, 4 283 5 b6 bit (1) unaligned, 4 284 5 b7 bit (1) unaligned, 4 285 5 b8 bit (1) unaligned, 4 286 5 b9 bit (1) unaligned, 4 287 5 b10 bit (1) unaligned, 4 288 5 b11 bit (1) unaligned, 4 289 5 b12 bit (1) unaligned, 4 290 5 b13 bit (1) unaligned, 4 291 5 b14 bit (1) unaligned, 4 292 5 b15 bit (1) unaligned, 4 293 5 b16 bit (1) unaligned, 4 294 5 b17 bit (1) unaligned, 4 295 5 b18 bit (1) unaligned, 4 296 5 b19 bit (1) unaligned, 4 297 5 b20 bit (1) unaligned, 4 298 5 b21 bit (1) unaligned, 4 299 5 b22 bit (1) unaligned, 4 300 5 b23 bit (1) unaligned, 4 301 5 b24 bit (1) unaligned, 4 302 5 b25 bit (1) unaligned, 4 303 5 b26 bit (1) unaligned, 4 304 5 b27 bit (1) unaligned, 4 305 5 b28 bit (1) unaligned, 4 306 5 b29 bit (1) unaligned, 4 307 5 b30 bit (1) unaligned, 4 308 5 b31 bit (1) unaligned, 4 309 5 b32 bit (1) unaligned, 4 310 5 b33 bit (1) unaligned, 4 311 5 b34 bit (1) unaligned, 4 312 5 b35 bit (1) unaligned, 4 313 /* 161-163 */ 4 lpage (0:2) bit (36), 4 314 /* 164 */ 4 lsit1 bit (36), 4 315 /* 165 */ 4 lsit2 bit (36), 4 316 /* 166 */ 4 lsit3 bit (36), 4 317 /* 167 */ 4 lsit4 bit (36), 4 318 /* The following entries are maintained by gtss and are not found in TSS UST */ 4 319 /* 170 */ 4 lxxx, /* program stack index, offset from gtss_ust */ 4 320 5 b0_17 fixed bin (17) unaligned, 4 321 5 b18_35 bit (18) unaligned, /* not used */ 4 322 /* 171-175 */ 4 lprgs (5), 4 323 5 b0_17 fixed bin (17) unaligned, 4 324 5 b18_35 fixed bin (17) unaligned, 4 325 /* 176 */ 4 fill bit (36), 4 326 /* 177 */ 4 remote_io_buffer aligned, 4 327 5 buffer_control_word, 4 328 6 current_line_pointer bit (18)unal, 4 329 6 buffer_threshold_address bit (18)unal, 4 330 5 number_words_transmitted fixed bin (17)unal, 4 331 5 FILL1 fixed bin (17)unal, 4 332 5 count_of_characters_transmitted fixed bin (17)unal, 4 333 5 FILL2 fixed bin (17)unal, 4 334 5 characters_transmitted (244) char (1) unal, 4 335 /* 277 */ 4 word_after_ust bit (36) aligned; 4 336 4 337 /* END INCLUDE FILE gtss_ust_ext_.incl.pl1 */ 151 152 5 1 /* BEGIN INCLUDE FILE gtss_device_cmds.incl.pl1 */ 5 2 /* 5 3* Created: (Wardd Multics) 07/08/78 1503.0 mst Sat 5 4**/ 5 5 dcl read_cmd bit(6)static int options(constant)init("25"b3); 5 6 dcl seek_cmd bit(6)static int options(constant)init("34"b3); 5 7 dcl write_cmd bit(6)static int options(constant)init("31"b3); 5 8 /* END INCLUDE FILE gtss_device_cmds.incl.pl1 */ 153 154 end; /* gtss_CFP_abort_ */ SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1042.4 gtss_CFP_abort_.pl1 >spec>on>7105>gtss_CFP_abort_.pl1 145 1 12/10/84 1029.7 gtss_deferred_queue.incl.pl1 >spec>on>7105>gtss_deferred_queue.incl.pl1 147 2 09/09/83 1714.2 gtss_starCF_.incl.pl1 >ldd>include>gtss_starCF_.incl.pl1 149 3 12/10/84 1029.7 gtss_entry_dcls.incl.pl1 >spec>on>7105>gtss_entry_dcls.incl.pl1 151 4 09/09/83 1714.3 gtss_ust_ext_.incl.pl1 >ldd>include>gtss_ust_ext_.incl.pl1 153 5 09/09/83 1713.7 gtss_device_cmds.incl.pl1 >ldd>include>gtss_device_cmds.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. Device_Command 2 000012 external static bit(6) level 4 packed unaligned dcl 2-12 set ref 28* 70* 83* OP2 2 000012 external static structure level 3 dcl 2-12 RECORD 12 000012 external static structure level 2 dcl 2-12 Seek_Address 6 000012 external static fixed bin(35,0) level 2 dcl 2-12 set ref 30* 69* 85* a 000100 automatic char(1) unaligned dcl 124 set ref 46* 47* abort_label 000000 constant bit(54) initial unaligned dcl 125 ref 95 aft_indx 113 000012 external static fixed bin(24,0) level 3 dcl 2-12 set ref 29 58 c_lcfio 6 based structure level 2 packed unaligned dcl 1-66 c_lcfst 7 based structure level 2 packed unaligned dcl 1-66 cf 112 000012 external static structure level 2 dcl 2-12 set ref 110 110 code 000101 automatic fixed bin(35,0) dcl 126 set ref 47* 48 110* cout based char(253) unaligned dcl 127 set ref 61 79 80* cout_ptr 000102 automatic pointer initial dcl 128 set ref 33* 61 79 80 94 95 96 97 98 128* cout_sector based structure level 1 packed unaligned dcl 1-66 file_name 000104 automatic char(4) initial array unaligned dcl 129 set ref 129* 129* 129* 129* 129* file_no 000111 automatic fixed bin(24,0) array dcl 130 set ref 49* 58* 67 84 file_number 000116 automatic fixed bin(24,0) dcl 131 set ref 29* 67* 84* 110* fn 000117 automatic fixed bin(24,0) dcl 132 set ref 47* 49 gtss_aft_$find 000014 constant entry external dcl 3-28 ref 47 gtss_ios_io_ 000016 constant entry external dcl 3-134 ref 110 gtss_starCF_$FILE 000012 external static structure level 1 dcl 2-12 gtss_ust 000020 external static structure level 2 dcl 4-16 gtss_ust_ext_$ust 000020 external static structure level 1 dcl 4-16 highest_level 000120 automatic fixed bin(24,0) dcl 134 set ref 43* 50* 50 55 57* 57 58 64 i 000121 automatic fixed bin(24,0) dcl 135 set ref 42* 49 52* 52 64* 67 84* idx 000342 automatic fixed bin(24,0) dcl 104 set ref 94* 95 96 97 98* init_sect_out 7 based fixed bin(18,0) level 3 packed unsigned unaligned dcl 1-66 ref 68 69 78 initial_sect_out 133 000020 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 4-16 ref 30 40 62 ioa_ 000010 constant entry external dcl 136 ref 117 label_name 60 based bit(54) array level 3 packed unaligned dcl 1-66 set ref 95 97* label_pos 61(18) based fixed bin(18,0) array level 3 packed unsigned unaligned dcl 1-66 set ref 96 98* label_table 60 based structure array level 2 packed unaligned dcl 1-66 set ref 94 lcfio 132 000020 external static structure level 3 dcl 4-16 lcfst 133 000020 external static structure level 3 dcl 4-16 new_sect_in 000122 automatic fixed bin(18,0) unsigned dcl 137 set ref 38 76 96* new_seek_no 000123 automatic fixed bin(18,0) unsigned dcl 138 set ref 68* 88 no_characters 12 000012 external static fixed bin(18,0) level 3 packed unsigned unaligned dcl 2-12 set ref 33 old_seek_no 000124 automatic fixed bin(18,0) unsigned dcl 139 set ref 62* 85 88* read_cmd constant bit(6) initial unaligned dcl 5-5 ref 28 70 save_cout 000125 automatic char(253) unaligned dcl 140 set ref 34 61* 80 89* scp 000226 automatic pointer initial dcl 141 set ref 34* 68 69 76 78 78 141* sect_in 132(18) 000020 external static fixed bin(18,0) level 4 packed unsigned unaligned dcl 4-16 set ref 38* 40* sector_in 6(18) based fixed bin(18,0) level 3 packed unsigned unaligned dcl 1-66 set ref 76* 78* select_sequence 000012 external static structure level 2 dcl 2-12 set ref 110 110 110 110 status 000230 automatic fixed bin(24,0) dcl 142 set ref 32 72 87 109* 110* 117 117* temp_buffer 000231 automatic char(253) unaligned dcl 143 set ref 79* 89 write_cmd constant bit(6) initial unaligned dcl 5-7 ref 83 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. com_err_ 000000 constant entry external dcl 3-8 dq_catalog based structure level 1 packed unaligned dcl 1-23 dq_dib based structure level 1 packed unaligned dcl 1-39 dq_header based structure level 1 packed unaligned dcl 1-6 gtss_CFP_abort_ 000000 constant entry external dcl 3-9 gtss_CFP_break_ 000000 constant entry external dcl 3-10 gtss_CFP_input_ 000000 constant entry external dcl 3-11 gtss_CFP_output_ 000000 constant entry external dcl 3-12 gtss_abandon_CFP_ 000000 constant entry external dcl 3-13 gtss_abort_dump_ 000000 constant entry external dcl 3-14 gtss_abort_subsystem_ 000000 constant entry external dcl 3-15 gtss_abort_subsystem_$not_imp 000000 constant entry external dcl 3-16 gtss_abs_$abs_equiv 000000 constant entry external dcl 3-19 gtss_abs_$cpu_runout 000000 constant entry external dcl 3-20 gtss_abs_$create_absin 000000 constant entry external dcl 3-21 gtss_abs_$dabt_check 000000 constant entry external dcl 3-22 gtss_abs_$get_drm 000000 constant entry external dcl 3-24 gtss_abs_$get_id 000000 constant entry external dcl 3-23 gtss_abs_login_banner_ 000000 constant entry external dcl 3-17 gtss_abs_logout_banner_ 000000 constant entry external dcl 3-18 gtss_adjust_size_ 000000 constant entry external dcl 3-25 gtss_aft_$add 000000 constant entry external dcl 3-26 gtss_aft_$delete 000000 constant entry external dcl 3-27 gtss_aft_$initialize 000000 constant entry external dcl 3-29 gtss_ascii_bcd_ 000000 constant entry external dcl 3-30 gtss_attributes_mgr_$get 000000 constant entry external dcl 3-31 gtss_attributes_mgr_$set 000000 constant entry external dcl 3-32 gtss_bcd_ascii_ 000000 constant entry external dcl 3-33 gtss_bcd_ascii_$lc 000000 constant entry external dcl 3-34 gtss_break_vector_ 000000 constant entry external dcl 3-35 gtss_break_vector_$drl_in_progress 000000 constant entry external dcl 3-36 gtss_break_vector_$status 000000 constant entry external dcl 3-37 gtss_build_ 000000 constant entry external dcl 3-38 gtss_com_err_ 000000 constant entry external dcl 3-39 gtss_derail_processor_ 000000 constant entry external dcl 3-40 gtss_derail_processor_$set 000000 constant entry external dcl 3-41 gtss_dq_$catp 000000 constant entry external dcl 3-42 gtss_dq_$create 000000 constant entry external dcl 3-43 gtss_dq_$dibp 000000 constant entry external dcl 3-44 gtss_dq_$entries_info 000000 constant entry external dcl 3-45 gtss_dq_$hdrp 000000 constant entry external dcl 3-46 gtss_dq_$mod_js 000000 constant entry external dcl 3-47 gtss_dq_$open_exc 000000 constant entry external dcl 3-48 gtss_dq_$open_gen 000000 constant entry external dcl 3-49 gtss_drl_abort_ 000000 constant entry external dcl 3-50 gtss_drl_addmem_ 000000 constant entry external dcl 3-51 gtss_drl_callss_ 000000 constant entry external dcl 3-52 gtss_drl_corfil_ 000000 constant entry external dcl 3-53 gtss_drl_defil_ 000000 constant entry external dcl 3-54 gtss_drl_defil_$subr 000000 constant entry external dcl 3-55 gtss_drl_dio_ 000000 constant entry external dcl 3-56 gtss_drl_drlimt_ 000000 constant entry external dcl 3-57 gtss_drl_drlsav_ 000000 constant entry external dcl 3-58 gtss_drl_filact_ 000000 constant entry external dcl 3-59 gtss_drl_filsp_ 000000 constant entry external dcl 3-60 gtss_drl_grow_ 000000 constant entry external dcl 3-61 gtss_drl_gwake_ 000000 constant entry external dcl 3-62 gtss_drl_jsts_ 000000 constant entry external dcl 3-63 gtss_drl_kin_ 000000 constant entry external dcl 3-64 gtss_drl_kotnow_ 000000 constant entry external dcl 3-65 gtss_drl_kotnow_$gtss_drl_kout_ 000000 constant entry external dcl 3-66 gtss_drl_koutn_ 000000 constant entry external dcl 3-67 gtss_drl_morlnk_ 000000 constant entry external dcl 3-68 gtss_drl_msub_ 000000 constant entry external dcl 3-69 gtss_drl_objtim_ 000000 constant entry external dcl 3-70 gtss_drl_part_ 000000 constant entry external dcl 3-71 gtss_drl_pasaft_ 000000 constant entry external dcl 3-72 gtss_drl_pasdes_ 000000 constant entry external dcl 3-73 gtss_drl_pasust_ 000000 constant entry external dcl 3-74 gtss_drl_pdio_ 000000 constant entry external dcl 3-75 gtss_drl_prgdes_ 000000 constant entry external dcl 3-76 gtss_drl_pseudo_ 000000 constant entry external dcl 3-77 gtss_drl_relmem_ 000000 constant entry external dcl 3-78 gtss_drl_restor_ 000000 constant entry external dcl 3-79 gtss_drl_retfil_ 000000 constant entry external dcl 3-80 gtss_drl_return_ 000000 constant entry external dcl 3-81 gtss_drl_rew_ 000000 constant entry external dcl 3-82 gtss_drl_rstswh_ 000000 constant entry external dcl 3-83 gtss_drl_setlno_ 000000 constant entry external dcl 3-84 gtss_drl_setswh_ 000000 constant entry external dcl 3-85 gtss_drl_snumb_ 000000 constant entry external dcl 3-86 gtss_drl_spawn_ 000000 constant entry external dcl 3-87 gtss_drl_spawn_$gtss_drl_pasflr_ 000000 constant entry external dcl 3-88 gtss_drl_stoppt_ 000000 constant entry external dcl 3-89 gtss_drl_switch_ 000000 constant entry external dcl 3-90 gtss_drl_sysret_ 000000 constant entry external dcl 3-91 gtss_drl_t_cfio_ 000000 constant entry external dcl 3-92 gtss_drl_t_cmov_ 000000 constant entry external dcl 3-93 gtss_drl_t_err_ 000000 constant entry external dcl 3-94 gtss_drl_t_goto_ 000000 constant entry external dcl 3-95 gtss_drl_t_linl_ 000000 constant entry external dcl 3-96 gtss_drl_t_rscc_ 000000 constant entry external dcl 3-97 gtss_drl_tapein_ 000000 constant entry external dcl 3-98 gtss_drl_task_ 000000 constant entry external dcl 3-99 gtss_drl_termtp_ 000000 constant entry external dcl 3-100 gtss_drl_time_ 000000 constant entry external dcl 3-101 gtss_drun_ 000000 constant entry external dcl 3-102 gtss_dsd_lookup_ 000000 constant entry external dcl 3-103 gtss_dsd_process_ 000000 constant entry external dcl 3-104 gtss_edit_dsd_ 000000 constant entry external dcl 3-105 gtss_expand_pathname_ 000000 constant entry external dcl 3-107 gtss_expand_pathname_$verify_umc 000000 constant entry external dcl 3-108 gtss_fail 000000 stack reference condition dcl 133 gtss_fault_processor_ 000000 constant entry external dcl 3-109 gtss_fault_processor_$timer_runout 000000 constant entry external dcl 3-111 gtss_filact_error_status_ 000000 constant entry external dcl 3-112 gtss_filact_funct02_ 000000 constant entry external dcl 3-113 gtss_filact_funct03_ 000000 constant entry external dcl 3-114 gtss_filact_funct04_ 000000 constant entry external dcl 3-115 gtss_filact_funct05_ 000000 constant entry external dcl 3-116 gtss_filact_funct08_ 000000 constant entry external dcl 3-117 gtss_filact_funct10_ 000000 constant entry external dcl 3-118 gtss_filact_funct11_ 000000 constant entry external dcl 3-119 gtss_filact_funct14_ 000000 constant entry external dcl 3-120 gtss_filact_funct18_ 000000 constant entry external dcl 3-121 gtss_filact_funct19_ 000000 constant entry external dcl 3-122 gtss_filact_funct21_ 000000 constant entry external dcl 3-123 gtss_filact_funct22_ 000000 constant entry external dcl 3-124 gtss_find_cond_frame_ 000000 constant entry external dcl 3-110 gtss_interp_prim_ 000000 constant entry external dcl 3-126 gtss_interp_prim_$callss 000000 constant entry external dcl 3-127 gtss_interp_prim_$sysret 000000 constant entry external dcl 3-128 gtss_interp_prim_$t_goto 000000 constant entry external dcl 3-129 gtss_ios_change_size_ 000000 constant entry external dcl 3-130 gtss_ios_close_ 000000 constant entry external dcl 3-131 gtss_ios_exchange_names_ 000000 constant entry external dcl 3-132 gtss_ios_initialize_ 000000 constant entry external dcl 3-133 gtss_ios_open_ 000000 constant entry external dcl 3-135 gtss_ios_position_ 000000 constant entry external dcl 3-136 gtss_mcfc_$close 000000 constant entry external dcl 3-139 gtss_mcfc_$delete 000000 constant entry external dcl 3-137 gtss_mcfc_$open 000000 constant entry external dcl 3-138 gtss_mcfc_empty 000000 constant entry external dcl 3-106 gtss_mcfc_init_ 000000 constant entry external dcl 3-125 gtss_read_starCFP_ 000000 constant entry external dcl 3-140 gtss_read_starCFP_$last_os 000000 constant entry external dcl 3-141 gtss_run_subsystem_ 000000 constant entry external dcl 3-142 gtss_run_subsystem_$finish 000000 constant entry external dcl 3-143 gtss_run_subsystem_$restor 000000 constant entry external dcl 3-144 gtss_run_subsystem_$restor_perm 000000 constant entry external dcl 3-145 gtss_set_slave_ 000000 constant entry external dcl 3-146 gtss_set_slave_$load_bar 000000 constant entry external dcl 3-147 gtss_update_safe_store_ 000000 constant entry external dcl 3-148 gtss_verify_access_ 000000 constant entry external dcl 3-149 gtss_verify_access_$check_forced_access 000000 constant entry external dcl 3-150 gtss_write_starCFP_ 000000 constant entry external dcl 3-151 seek_cmd internal static bit(6) initial unaligned dcl 5-6 NAMES DECLARED BY EXPLICIT CONTEXT. gtss_CFP_abort_ 000045 constant entry external dcl 9 label_present 000365 constant entry internal dcl 92 ref 38 76 read_cout 000446 constant entry internal dcl 107 ref 31 71 write_cout 000444 constant entry internal dcl 107 ref 86 NAMES DECLARED BY CONTEXT OR IMPLICATION. addr builtin function ref 33 34 110 110 110 110 110 110 fixed builtin function ref 110 110 hbound builtin function ref 94 null builtin function ref 128 141 rel builtin function ref 110 110 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 632 654 537 642 Length 1136 537 22 246 72 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME gtss_CFP_abort_ 285 external procedure is an external procedure. label_present internal procedure shares stack frame of external procedure gtss_CFP_abort_. write_cout internal procedure shares stack frame of external procedure gtss_CFP_abort_. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME gtss_CFP_abort_ 000100 a gtss_CFP_abort_ 000101 code gtss_CFP_abort_ 000102 cout_ptr gtss_CFP_abort_ 000104 file_name gtss_CFP_abort_ 000111 file_no gtss_CFP_abort_ 000116 file_number gtss_CFP_abort_ 000117 fn gtss_CFP_abort_ 000120 highest_level gtss_CFP_abort_ 000121 i gtss_CFP_abort_ 000122 new_sect_in gtss_CFP_abort_ 000123 new_seek_no gtss_CFP_abort_ 000124 old_seek_no gtss_CFP_abort_ 000125 save_cout gtss_CFP_abort_ 000226 scp gtss_CFP_abort_ 000230 status gtss_CFP_abort_ 000231 temp_buffer gtss_CFP_abort_ 000342 idx label_present 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. gtss_aft_$find gtss_ios_io_ ioa_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. gtss_starCF_$FILE gtss_ust_ext_$ust LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 9 000044 128 000052 129 000054 141 000101 28 000103 29 000106 30 000110 31 000115 32 000116 33 000120 34 000124 38 000126 40 000140 42 000146 43 000150 46 000151 47 000155 48 000176 49 000200 50 000203 52 000204 53 000205 55 000225 57 000227 58 000230 61 000235 62 000241 64 000246 67 000253 68 000255 69 000266 70 000273 71 000275 72 000276 76 000300 78 000315 79 000331 80 000335 83 000340 84 000344 85 000347 86 000351 87 000352 88 000354 89 000356 90 000361 154 000364 92 000365 94 000367 95 000375 96 000405 97 000416 98 000423 99 000426 101 000434 102 000436 107 000444 109 000447 110 000450 117 000503 122 000525 ----------------------------------------------------------- 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