COMPILATION LISTING OF SEGMENT set_sons_volume Compiled by: Multics PL/I Compiler, Release 27d, of October 11, 1982 Compiled at: Honeywell LISD Phoenix, System M Compiled on: 11/15/82 1546.0 mst Mon 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 set_sons_volume: proc; 12 13 /* THVV */ 14 15 call cu_$arg_ptr (2, ap, al, ec); 16 if ec ^= 0 then do; 17 call com_err_ (ec, "set_sons_volume", "Usage: set_sons_volume path vol"); 18 return; 19 end; 20 call mdc_$find_lvid (bchr, lvid, ec); 21 if ec ^= 0 then do; 22 call com_err_ (ec, "set_sons_volume", "error from find_lvid"); 23 return; 24 end; 25 26 call cu_$arg_ptr (1, ap, al, ec); 27 call expand_path_ (ap, al, addr (dn), addr (en), ec); 28 if ec ^= 0 then do; 29 call com_err_ (ec, "set_sons_volume", "^a", bchr); 30 return; 31 end; 32 33 call hphcs_$set_sons_lvid (dn, en, lvid, ec); 34 if ec ^= 0 then call com_err_ (ec, "set_sons_volume", "^a", bchr); 35 return; 36 37 dcl null builtin; 38 dcl lvid bit (36); 39 dcl dn char (168), en char (32); 40 dcl i fixed bin; 41 dcl ec fixed bin (35); 42 dcl ap ptr, al fixed bin, bchr char (al) based (ap); 43 44 dcl hphcs_$set_sons_lvid entry (char (*), char (*), bit (36), fixed bin (35)); 45 dcl mdc_$find_lvid entry (char (*), bit (36), fixed bin (35)); 46 dcl cu_$arg_ptr entry (fixed bin, ptr, fixed bin, fixed bin (35)); 47 dcl expand_path_ entry (ptr, fixed bin, ptr, ptr, fixed bin (35)); 48 dcl com_err_ entry options (variable); 49 50 end set_sons_volume; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 11/15/82 1456.1 set_sons_volume.pl1 >dumps>old>recomp>set_sons_volume.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. al 000166 automatic fixed bin(17,0) dcl 42 set ref 15* 20 20 26* 27* 29 29 34 34 ap 000164 automatic pointer dcl 42 set ref 15* 20 26* 27* 29 34 bchr based char unaligned dcl 42 set ref 20* 29* 34* com_err_ 000020 constant entry external dcl 48 ref 17 22 29 34 cu_$arg_ptr 000014 constant entry external dcl 46 ref 15 26 dn 000101 automatic char(168) unaligned dcl 39 set ref 27 27 33* ec 000163 automatic fixed bin(35,0) dcl 41 set ref 15* 16 17* 20* 21 22* 26* 27* 28 29* 33* 34 34* en 000153 automatic char(32) unaligned dcl 39 set ref 27 27 33* expand_path_ 000016 constant entry external dcl 47 ref 27 hphcs_$set_sons_lvid 000010 constant entry external dcl 44 ref 33 lvid 000100 automatic bit(36) unaligned dcl 38 set ref 20* 33* mdc_$find_lvid 000012 constant entry external dcl 45 ref 20 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. i automatic fixed bin(17,0) dcl 40 null builtin function dcl 37 NAME DECLARED BY EXPLICIT CONTEXT. set_sons_volume 000033 constant entry external dcl 11 NAME DECLARED BY CONTEXT OR IMPLICATION. addr builtin function ref 27 27 27 27 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 462 504 371 472 Length 660 371 22 137 71 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME set_sons_volume 176 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME set_sons_volume 000100 lvid set_sons_volume 000101 dn set_sons_volume 000153 en set_sons_volume 000163 ec set_sons_volume 000164 ap set_sons_volume 000166 al set_sons_volume THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_ cu_$arg_ptr expand_path_ hphcs_$set_sons_lvid mdc_$find_lvid NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 11 000032 15 000040 16 000056 17 000060 18 000112 20 000113 21 000137 22 000141 23 000173 26 000174 27 000213 28 000236 29 000240 30 000300 33 000301 34 000326 35 000370 ----------------------------------------------------------- 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