COMPILATION LISTING OF SEGMENT ready Compiled by: Multics PL/I Compiler, Release 33e, of October 6, 1992 Compiled at: CGI Compiled on: 2000-05-05_1831.35_Fri_mdt 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 ready: rdy: 12 procedure; 13 14 /* Changed to print usage if called with args 06/10/80 S. Herbst */ 15 16 /* automatic */ 17 18 dcl 1 flags aligned, 19 2 ready_sw bit (1) unaligned, 20 2 pad bit (35) unaligned; 21 22 /* builtins */ 23 24 dcl string builtin; 25 26 /* entries */ 27 28 dcl com_err_$suppress_name entry options (variable); 29 dcl cu_$arg_count entry returns (fixed bin); 30 dcl (cu_$ready_proc, cu_$set_ready_mode) entry (1 aligned, 2 bit (1) unaligned, 2 bit (35) unaligned); 31 32 /* program */ 33 34 call check_usage ("ready"); 35 36 string (flags) = "1"b; 37 call cu_$ready_proc (flags); 38 RETURN: return; 39 40 ready_on: rdn: 41 entry; 42 43 call check_usage ("ready_on"); 44 45 string (flags) = "1"b; 46 call cu_$set_ready_mode (flags); 47 return; 48 49 ready_off: rdf: 50 entry; 51 52 call check_usage ("ready_off"); 53 54 string (flags) = "0"b; 55 call cu_$set_ready_mode (flags); 56 return; 57 /* */ 58 check_usage: proc (A_name); 59 60 dcl A_name char (*); 61 62 if cu_$arg_count () > 0 then do; 63 call com_err_$suppress_name (0, A_name, 64 "Usage: ^a", A_name); 65 go to RETURN; 66 end; 67 68 end check_usage; 69 70 71 end ready; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 05/05/00 1831.3 ready.pl1 >udd>sm>ds>w>ml>ready.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. A_name parameter char packed unaligned dcl 60 set ref 58 63* 63* com_err_$suppress_name 000010 constant entry external dcl 28 ref 63 cu_$arg_count 000012 constant entry external dcl 29 ref 62 cu_$ready_proc 000014 constant entry external dcl 30 ref 37 cu_$set_ready_mode 000016 constant entry external dcl 30 ref 46 55 flags 000100 automatic structure level 1 dcl 18 set ref 36* 37* 45* 46* 54* 55* string builtin function dcl 24 set ref 36* 45* 54* NAMES DECLARED BY EXPLICIT CONTEXT. RETURN 000055 constant label dcl 38 ref 65 check_usage 000150 constant entry internal dcl 58 ref 34 43 52 rdf 000113 constant entry external dcl 49 rdn 000057 constant entry external dcl 40 rdy 000023 constant entry external dcl 11 ready 000032 constant entry external dcl 11 ready_off 000122 constant entry external dcl 49 ready_on 000066 constant entry external dcl 40 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 364 404 252 374 Length 556 252 20 135 111 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME rdy 102 external procedure is an external procedure. check_usage internal procedure shares stack frame of external procedure rdy. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME rdy 000100 flags rdy THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_$suppress_name cu_$arg_count cu_$ready_proc cu_$set_ready_mode NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 11 000022 34 000037 36 000044 37 000046 38 000055 40 000056 43 000073 45 000100 46 000102 47 000111 49 000112 52 000127 54 000137 55 000140 56 000147 58 000150 62 000161 63 000172 65 000226 68 000227 ----------------------------------------------------------- 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