COMPILATION LISTING OF SEGMENT find_mowse_io_ Compiled by: Multics PL/I Compiler, Release 29, of July 28, 1986 Compiled at: Honeywell Bull, Phx. Az., Sys-M Compiled on: 08/07/87 1507.4 mst Fri Options: optimize map 1 /****^ *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Bull Inc., 1987 * 4* * * 5* * Copyright, (C) Honeywell Information Systems Inc., 1986 * 6* * * 7* *********************************************************** */ 8 9 /****^ HISTORY COMMENTS: 10* 1) change(86-08-14,Flegel), approve(87-07-15,MCR7580), 11* audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 12* Created. 13* 2) change(86-08-18,Flegel), approve(87-07-15,MCR7580), 14* audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 15* Redesign to look at N iocbs rather than traverse a chain as mowse_io_ 16* could be attached to something not associated with user_i/o. 17* 3) change(86-10-08,Flegel), approve(87-07-15,MCR7580), 18* audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 19* Looks for the switch name "mowse_i/o" rather than every switch to find 20* what is attached to what. 21* 4) change(86-11-27,Flegel), approve(86-11-27,MCR7580), 22* audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075): 23* Approved. 24* END HISTORY COMMENTS */ 25 /* format: style4,indattr,ifthen,^indcomtxt,thendo,^indproc,^indblkcom,initcol1,declareind8,dclind4,struclvlind3,comcol55 */ 26 find_mowse_io_: 27 proc (p_iocb_ptr, p_code); 28 29 /* : PROGRAM FUNCTION 30* 31*Find the iocb_ptr of the switch which is attached to mowse_io_. 32**/ 33 34 /* : NOTES 35**/ 36 37 38 /* INPUT PARAMETERS */ 39 dcl p_iocb_ptr ptr; /* Pointer to iocb which is above tty_ */ 40 41 42 /* OUTPUT PARAMETERS */ 43 dcl p_code fixed bin (35); 44 45 46 /* SYSTEM CALLS */ 47 dcl iox_$look_iocb entry (char (*), ptr, fixed bin (35)); 48 49 50 /* */ 51 52 /* INITIALIZATION */ 53 p_code = 0; 54 55 /* MAIN */ 56 57 call iox_$look_iocb ("mowse_i/o", p_iocb_ptr, p_code); 58 59 60 /* INCLUDE FILES */ 61 62 /* : END */ 63 end; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 08/07/87 1454.9 find_mowse_io_.pl1 >special_ldd>install>MR12.1-1075>find_mowse_io_.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. iox_$look_iocb 000010 constant entry external dcl 47 ref 57 p_code parameter fixed bin(35,0) dcl 43 set ref 26 53* 57* p_iocb_ptr parameter pointer dcl 39 set ref 26 57* NAME DECLARED BY EXPLICIT CONTEXT. find_mowse_io_ 000012 constant entry external dcl 26 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 104 116 47 114 Length 264 47 12 131 35 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME find_mowse_io_ 82 external procedure is an external procedure. THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. iox_$look_iocb NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 26 000006 53 000017 57 000021 63 000046 ----------------------------------------------------------- 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