COMPILATION LISTING OF SEGMENT check_star_ Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 10/25/83 1531.2 mst Tue 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 12 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 13 /* */ 14 /* N__a_m_e: check_star_ */ 15 /* */ 16 /* This obsolete routine has been replaced by check_star_name_. */ 17 /* */ 18 /* S__t_a_t_u_s */ 19 /* */ 20 /* 0) Created: Jul, 1973 by G. C. Dixon */ 21 /* */ 22 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 23 24 check_star_: procedure (Pstar, Lstar, code); 25 26 dcl Pstar ptr, /* ptr to star path or star entry. (In) */ 27 Lstar fixed bin, /* length of star path or star entry. (In) */ 28 code fixed bin(35); /* status code. (Out) */ 29 30 dcl star char(Lstar) based (Pstar); 31 /* overlay for star path or star entry. */ 32 33 dcl check_star_name_$entry entry (char(*), fixed bin(35)), 34 check_star_name_$path entry (char(*), fixed bin(35)); 35 36 call check_star_name_$path (star, code); 37 return; 38 39 check_entry_name: entry (Pstar, Lstar, code); 40 41 call check_star_name_$entry (star, code); 42 43 end check_star_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/25/83 1444.2 check_star_.pl1 >spec>on>eod-fix>check_star_.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. Lstar parameter fixed bin(17,0) dcl 26 ref 24 36 36 39 41 41 Pstar parameter pointer dcl 26 ref 24 36 39 41 check_star_name_$entry 000010 constant entry external dcl 33 ref 41 check_star_name_$path 000012 constant entry external dcl 33 ref 36 code parameter fixed bin(35,0) dcl 26 set ref 24 36* 39 41* star based char unaligned dcl 30 set ref 36* 41* NAMES DECLARED BY EXPLICIT CONTEXT. check_entry_name 000041 constant entry external dcl 39 check_star_ 000010 constant entry external dcl 24 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 144 160 71 154 Length 324 71 14 127 53 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME check_star_ 76 external procedure is an external procedure. 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. check_star_name_$entry check_star_name_$path NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 24 000004 36 000015 37 000036 39 000037 41 000046 43 000070 ----------------------------------------------------------- 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