THIS FILE IS DAMAGED COMPILATION LISTING OF SEGMENT lv_attached Compiled by: Multics PL/I Compiler, Release 27d, of October 11, 1982 Compiled at: Honeywell LISD Phoenix, System M Compiled on: 11/04/82 1636.5 mst Thu 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 lv_attached: proc; 12 13 /* LV_ATTACHED - true if user mounted vol */ 14 15 dcl ec fixed bin (35), 16 nactsw bit (1) init ("0"b), 17 ap ptr, al fixed bin, 18 ap1 ptr, al1 fixed bin, 19 bchr char (al) based (ap), 20 return_value char (al1) varying based (ap1), 21 answer char (5) var, 22 i fixed bin, 23 lvid bit (36); 24 25 dcl cu_$arg_ptr entry (fixed bin, ptr, fixed bin, fixed bin (35)); 26 dcl cu_$af_arg_ptr entry (fixed bin, ptr, fixed bin, fixed bin (35)); 27 dcl cu_$af_return_arg entry (fixed bin, ptr, fixed bin, fixed bin (35)); 28 dcl error_table_$not_act_fnc fixed bin (35) ext; 29 dcl active_fnc_err_ entry options (variable); 30 dcl com_err_ entry options (variable); 31 dcl ioa_ entry options (variable); 32 dcl hcs_$lv_attached entry (bit (36), fixed bin (35)); 33 dcl mdc_$find_lvid entry (char (*), bit (36), fixed bin (35)); 34 35 call cu_$af_arg_ptr (1, ap, al, ec); 36 if ec ^= 0 & ec = error_table_$not_act_fnc then do; 37 call cu_$arg_ptr (1, ap, al, ec); 38 nactsw = "1"b; 39 end; 40 if ec ^= 0 then do; 41 er: if nactsw then call com_err_ (ec, "lv_attached", ""); 42 else call active_fnc_err_ (ec, "lv_attached", ""); 43 return; 44 end; 45 call mdc_$find_lvid (bchr, lvid, ec); 46 if ec = 0 then call hcs_$lv_attached (lvid, ec); 47 if ec = 0 then answer = "true"; 48 else answer = "false"; 49 if nactsw then call ioa_ ("^a", answer); 50 else do; 51 call cu_$af_return_arg (i, ap1, al1, ec); 52 if ec ^= 0 then go to er; 53 return_value = answer; 54 end; 55 56 end; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 11/04/82 1612.0 lv_attached.pl1 >dumps>old>recomp>lv_attached.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. active_fnc_err_ 000020 constant entry external dcl 29 ref 42 al 000104 automatic fixed bin(17,0) dcl 15 set ref 35* 37* 45 45 al1 000110 automatic fixed bin(17,0) dcl 15 set ref 51* 53 answer 000111 automatic varying char(5) dcl 15 set ref 47* 48* 49* 53 ap 000102 automatic pointer dcl 15 set ref 35* 37* 45 ap1 000106 automatic pointer dcl 15 set ref 51* 53 bchr based char unaligned dcl 15 set ref 45* com_err_ 000022 constant entry external dcl 30 ref 41 cu_$af_arg_ptr 000012 constant entry exter€YPattin €êÀ¢¤ˆb˜ Pattin Multics ˆHinatsu €ŒÆ¦ºžš"$ Hinatsu ch Multics  ‘uPŠC<Tµ&8·T?èÀðnoneSUN3_54_132 €«”Margulies €nò–~b¢ Margulies Multics vDRepair €ˆ¾h–F& ô@"ºf,ü Repair SysAdmin nQ•L°–CTø‘šè`RÇ3ß]noneSUN3 ÕHale b¾Âú`ˆ È Hale Multics ! Sؼ5µT[,ÿð*TIÙ~enoneSTY_TELNET S½vÕùã ----------------------------------------------------------- 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