COMPILATION LISTING OF SEGMENT gfms_tape_status_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1210.6 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* *********************************************************** */ 6 gfms_tape_status_: proc (p)returns (bit (12)); 7 8 /* Return tape_nstd_ request_status. 9* 10* Author: Dave Ward 10/28/80 11**/ 12 dcl p ptr parm; 13 call iox_$control ( 14 p /* (input) pointer to switch's control block. */ 15 , "request_status" /* (input) control order. */ 16 , addr (s12) /* (input) pointer to 12 bit status. */ 17 , code /* (output) status code. */ 18 ); 19 if code ^= 0 then 20 call com_err_ ( 21 code 22 , "gfms_tape_status_" 23 , "pointer to switch iocb (^p)" 24 , p 25 ); 26 return (s12); 27 28 dcl code fixed bin(35); 29 dcl com_err_ entry() options(variable); 30 dcl iox_$control entry (ptr, char(*), ptr, fixed bin(35)); 31 dcl s12 bit(12)aligned; 32 end gfms_tape_status_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1042.0 gfms_tape_status_.pl1 >spec>on>7105>gfms_tape_status_.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 000100 automatic fixed bin(35,0) dcl 28 set ref 13* 19 19* com_err_ 000010 constant entry external dcl 29 ref 19 iox_$control 000012 constant entry external dcl 30 ref 13 p parameter pointer dcl 12 set ref 6 13* 19* s12 000101 automatic bit(12) dcl 31 set ref 13 13 26 NAME DECLARED BY EXPLICIT CONTEXT. gfms_tape_status_ 000032 constant entry external dcl 6 NAME DECLARED BY CONTEXT OR IMPLICATION. addr builtin function ref 13 13 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 204 220 140 214 Length 366 140 14 131 43 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME gfms_tape_status_ 116 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME gfms_tape_status_ 000100 code gfms_tape_status_ 000101 s12 gfms_tape_status_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc return ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_ iox_$control NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 6 000026 13 000037 19 000071 26 000132 ----------------------------------------------------------- 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