COMPILATION LISTING OF SEGMENT trace_recurse_dummy_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 10/23/84 1251.1 mst Tue Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1983 * 4* * * 5* *********************************************************** */ 6 7 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 8 /* */ 9 /* Written in June 1983 by Jeffrey D. Ives. */ 10 /* */ 11 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 12 13 14 /* format: style2,^inddcls,ifthendo,^indnoniterdo,thendo,^inditerdo,ind2,dclind5,idind32 */ 15 16 17 trace_recurse_dummy_: 18 proc (number_of_times_io, return_clock_reading_o); 19 20 number_of_times_io = number_of_times_io - 1; 21 22 if number_of_times_io ^= 0 23 then call trace_recurse_dummy_ (number_of_times_io, return_clock_reading_o); 24 else return_clock_reading_o = clock (); 25 26 return; 27 28 29 30 /* START OF DECLARATIONS */ 31 /* format: ^insnl,^delnl */ 32 33 /* Parameters */ 34 dcl return_clock_reading_o fixed bin (53) parm; 35 dcl number_of_times_io fixed bin parm; 36 37 /* Automatic */ 38 39 /* Static */ 40 41 /* Conditions */ 42 43 /* Based */ 44 45 /* External Variables */ 46 47 /* External Entries */ 48 dcl trace_recurse_dummy_ entry (fixed bin, fixed bin (53)); 49 50 /* format: insnl,delnl */ 51 /* END OF DECLARATIONS */ 52 53 end trace_recurse_dummy_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/23/84 1219.1 trace_recurse_dummy_.pl1 >special_ldd>online>6972-10/23/84>trace_recurse_dummy_.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. number_of_times_io parameter fixed bin(17,0) dcl 35 set ref 17 20* 20 22 22* return_clock_reading_o parameter fixed bin(53,0) dcl 34 set ref 17 22* 24* trace_recurse_dummy_ 000010 constant entry external dcl 48 ref 22 NAME DECLARED BY EXPLICIT CONTEXT. trace_recurse_dummy_ 000006 constant entry external dcl 17 NAME DECLARED BY CONTEXT OR IMPLICATION. clock builtin function ref 24 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 70 102 35 100 Length 252 35 12 134 32 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME trace_recurse_dummy_ 70 external procedure is an external procedure. THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return ext_entry clock THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. trace_recurse_dummy_ NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 17 000002 20 000013 22 000016 24 000031 26 000034 ----------------------------------------------------------- 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