/* START OF: lib_based_args_.incl.pl1 * * * * * * * * * * * * * * * * */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* N__a_m_e: lib_based_args_.incl.pl1 */ /* */ /* This include segment defines structures for the arrays of library names and search*/ /* names used by library descriptor commands. This segment, lib_Svalid_req_.incl.pl1, */ /* and lib_Scontrol_.incl.pl1 define the complete set of structures required as input */ /* to the lib_descriptor_ subroutine. */ /* */ /* S__t_a_t_u_s */ /* */ /* 0) Created on: March 1, 1975 by A. J. Scherer */ /* 1) Modified on: April 8, 1975 by G. C. Dixon */ /* 2) Modified on: May 13, 1976 by G. C. Dixon */ /* 3) Modified on: November 2, 1983 by Jim Lippard to align structures */ /* */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ dcl 1 library aligned based (Plibrary), /* a structure containing names of libraries to */ /* be searched. */ 2 N fixed bin, /* attribute: number of library names in array. */ 2 group (0 refer (library.N)), /* attribute: array of library names */ 3 V char(32) unal, /* attribute: a library name (value). */ 3 C fixed bin(35); /* attribute: code from check_star_name_ for */ dcl Plibrary ptr; /* ptr to: library structure. */ /* this library name. */ dcl 1 starname aligned based (Pstarname), /* a structure containing names of library entries*/ /* being searched for. */ 2 N fixed bin, /* attribute: number of starnames in array. */ 2 group (0 refer (starname.N)), /* attribute: array of starnames */ 3 V char(32) unal, /* attribute: a starname (value). */ 3 C fixed bin(35); /* attribute: code from check_star_name_ for */ /* this starname. */ dcl Pstarname ptr; /* ptr to: starname structure. */ dcl 1 exclude aligned based (Pexclude), /* a structure containing names of library entries*/ /* being excluded from the search. */ 2 N fixed bin, /* attribute: number of excludes in array. */ 2 group (0 refer (exclude.N)), /* attribute: array of excludes */ 3 V char(32) unal, /* attribute: an exclude (value). */ 3 C fixed bin(35); /* attribute: code from check_star_name_ for */ /* this exclude. */ dcl Pexclude ptr; /* ptr to: exclude structure. */ /* END OF: lib_based_args_.incl.pl1 * * * * * * * * * * * * * * * * */ */ ----------------------------------------------------------- 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 */