COMPILATION LISTING OF SEGMENT gtss_fix_tty_modes_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1257.9 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* * Copyright (c) 1972 by Massachusetts Institute of * 6* * Technology and Honeywell Information Systems, Inc. * 7* * * 8* *********************************************************** */ 9 10 11 gtss_fix_tty_modes_: proc; 12 13 /* 14* This procedure resets the tty_modes after QUIT 15* 16* Author: Scott C. Akers 14 August 81 17**/ 18 19 on condition (quit); /* Cannot allow QUITs here! */ 20 call iox_$modes (iox_$user_output, 21 "edited,^can,ll190", 22 ignored_modes, code); 23 24 revert quit; /* O.K. to have QUITs now. */ 25 return; 26 27 dcl iox_$modes entry (ptr, char (*), char (400), fixed bin (35)); 28 dcl iox_$user_output ptr ext; 29 dcl ignored_modes char (400); /* These are ignored. */ 30 dcl code fixed bin (35); /* This is ignored, too. */ 31 dcl quit condition; 32 33 end gtss_fix_tty_modes_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1043.8 gtss_fix_tty_modes_.pl1 >spec>on>7105>gtss_fix_tty_modes_.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. code 000244 automatic fixed bin(35,0) dcl 30 set ref 20* ignored_modes 000100 automatic char(400) unaligned dcl 29 set ref 20* iox_$modes 000010 constant entry external dcl 27 ref 20 iox_$user_output 000012 external static pointer dcl 28 set ref 20* quit 000246 stack reference condition dcl 31 ref 19 24 NAME DECLARED BY EXPLICIT CONTEXT. gtss_fix_tty_modes_ 000013 constant entry external dcl 11 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 140 154 67 150 Length 324 67 14 133 50 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME gtss_fix_tty_modes_ 196 external procedure is an external procedure. on unit on line 19 64 on unit STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME gtss_fix_tty_modes_ 000100 ignored_modes gtss_fix_tty_modes_ 000244 code gtss_fix_tty_modes_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc return enable ext_entry int_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. iox_$modes THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. iox_$user_output LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 11 000012 19 000020 20 000035 24 000065 25 000066 ----------------------------------------------------------- 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