------------------------------------------------------------------------------ -- -- -- POSIX ADA LANGUAGE INTERFACES COMPONENTS -- -- -- -- P O S I X . C O N F I G U R A B L E _ F I L E _ L I M I T S -- -- -- -- S p e c -- -- -- -- $Revision: 1.3 $ -- -- -- -- -- -- This package specification is part of the Florida State -- -- University (FSU) prototype implementation of IEEE Draft Std -- -- 1003.5b, for use with the Gnu NYU Ada Translator (GNAT) and the -- -- FSU Gnu Ada Runtime Library (GNARL). -- -- -- -- This package specification contains some text extracted from IEEE -- -- Draft Std 1003.5b/D5 (August 1995), IEEE Draft Standard for -- -- Information Technology -- POSIX Ada Language Interfaces -- Part 1: -- -- Binding for System Application Program Interface, Amendment 1: -- -- Realtime Extensions, copyright 1995 by the Institute of Electrical -- -- and Electronics Engineers, Inc. -- -- -- -- This package specification differs from the package specifications -- -- in IEEE Draft Std 1003.5/D5 in several respects. For example, it -- -- includes additional with-clause dependences, comments, and -- -- complete definitions for certain types, ranges, and constants that -- -- are left implementation-defined in the draft standard. These -- -- differences appear to be within the scope of variation which the -- -- draft standard permits for implementations, but no warranty is -- -- made to that effect. -- -- -- -- These package specifications are distributed in the hope that they -- -- will be useful, but WITHOUT ANY WARRANTY; without even the implied -- -- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- The package specifications in IEEE Draft Std 1003.5b/D5 represent -- -- only a portion of the document and are not to be interpreteted -- -- outside the context of the document, nor is the draft document to -- -- be interpreted as an approved consensus standard. -- -- -- -- When IEEE Std 1003.5b is approved, it must be used in conjunction -- -- with the final version of the package specifications contained in -- -- that document in order to claim conformance. The IEEE takes no -- -- responsibility for and will assume no liability for damages -- -- resulting from the reader's misinterpretation of said information -- -- resulting from its out-of-context nature. To order copies of the -- -- IEEE Draft Std 1003.5/D5, please contact the IEEE Service Center -- -- at 445 Hoes Lane, PO Box 1331, Piscataway, NJ 08855-1331; via -- -- phone at 1-800-678-IEEE, 908-981-1393; or via fax at 908-981-9667. -- -- -- -- For bodies to these packages, and other free products of the FSU -- -- POSIX/Ada Real-Time project, see the ftp site "ftp.cs.fsu.edu", -- -- subdirectory "pub/PART", or send e-mail to "part@ada.cs.fsu.edu". -- -- -- ------------------------------------------------------------------------------ with POSIX, POSIX.IO, POSIX.Limits; -- end changes package POSIX.Configurable_File_Limits is -- Link Limits function Link_Is_Limited (Pathname : POSIX.Pathname) return Boolean; -- obsolescent function Link_Is_Limited (File : POSIX.IO.File_Descriptor) return Boolean; function Link_Limit (Pathname : POSIX.Pathname) return POSIX.Link_Limit_Maxima; -- obsolescent function Link_Limit (File : POSIX.IO.File_Descriptor) return POSIX.Link_Limit_Maxima; function Links_Are_Limited (Pathname : POSIX.Pathname) return Boolean renames Link_Is_Limited; function Links_Are_Limited (File : POSIX.IO.File_Descriptor) return Boolean renames Link_Is_Limited; function Links_Maximum (Pathname : POSIX.Pathname) return POSIX.Limits.Links_Maxima renames Link_Limit; function Links_Maximum (File : POSIX.IO.File_Descriptor) return POSIX.Limits.Links_Maxima renames Link_Limit; -- Input line limits function Input_Line_Is_Limited (Pathname : POSIX.Pathname) return Boolean; function Input_Line_Is_Limited (File : POSIX.IO.File_Descriptor) return Boolean; function Input_Line_Limit (Pathname : POSIX.Pathname) return POSIX.Input_Line_Limit_Maxima; -- obsolescent function Input_Line_Limit (File : POSIX.IO.File_Descriptor) return POSIX.Input_Line_Limit_Maxima; function Input_Line_Maximum (Pathname : POSIX.Pathname) return POSIX.Limits.Input_Line_Maxima renames Input_Line_Limit; function Input_Line_Maximum (File : POSIX.IO.File_Descriptor) return POSIX.Limits.Input_Line_Maxima renames Input_Line_Limit; -- Input queue limits function Input_Queue_Is_Limited (Pathname : POSIX.Pathname) return Boolean; function Input_Queue_Is_Limited (File : POSIX.IO.File_Descriptor) return Boolean; function Input_Queue_Limit (Pathname : POSIX.Pathname) return POSIX.Input_Queue_Limit_Maxima; -- obsolescent function Input_Queue_Limit (File : POSIX.IO.File_Descriptor) return POSIX.Input_Queue_Limit_Maxima; function Input_Queue_Maximum (Pathname : POSIX.Pathname) return POSIX.Limits.Input_Queue_Maxima renames Input_Queue_Limit; function Input_Queue_Maximum (File : POSIX.IO.File_Descriptor) return POSIX.Limits.Input_Queue_Maxima renames Input_Queue_Limit; -- Filename and pathname limits function Filename_Is_Limited (Pathname : POSIX.Pathname) return Boolean; function Filename_Is_Limited (File : POSIX.IO.File_Descriptor) return Boolean; function Filename_Limit (Pathname : POSIX.Pathname) return POSIX.Filename_Limit_Maxima; -- obsolescent function Filename_Limit (File : POSIX.IO.File_Descriptor) return POSIX.Filename_Limit_Maxima; function Filename_Maximum (Pathname : POSIX.Pathname) return POSIX.Limits.Filename_Maxima renames Filename_Limit; function Filename_Maximum (File : POSIX.IO.File_Descriptor) return POSIX.Limits.Filename_Maxima renames Filename_Limit; function Pathname_Is_Limited (Pathname : POSIX.Pathname) return Boolean; function Pathname_Is_Limited (File : POSIX.IO.File_Descriptor) return Boolean; function Pathname_Limit (Pathname : POSIX.Pathname) return POSIX.Pathname_Limit_Maxima; -- obsolescent function Pathname_Limit (File : POSIX.IO.File_Descriptor) return POSIX.Pathname_Limit_Maxima; function Pathname_Maximum (Pathname : POSIX.Pathname) return POSIX.Limits.Pathname_Maxima renames Pathname_Limit; function Pathname_Maximum (File : POSIX.IO.File_Descriptor) return POSIX.Limits.Pathname_Maxima renames Pathname_Limit; -- Pipe length limits function Pipe_Length_Is_Limited (Pathname : POSIX.Pathname) return Boolean; function Pipe_Length_Is_Limited (File : POSIX.IO.File_Descriptor) return Boolean; function Pipe_Length_Limit (Pathname : POSIX.Pathname) return POSIX.Pipe_Limit_Maxima; -- obsolescent function Pipe_Length_Limit (File : POSIX.IO.File_Descriptor) return POSIX.Pipe_Limit_Maxima; function Pipe_Length_Maximum (Pathname : POSIX.Pathname) return POSIX.Limits.Pipe_Length_Maxima renames Pipe_Length_Limit; function Pipe_Length_Maximum (File : POSIX.IO.File_Descriptor) return POSIX.Limits.Pipe_Length_Maxima renames Pipe_Length_Limit; function Change_Owner_Is_Restricted (Pathname : POSIX.Pathname) return POSIX.Change_Owner_Restriction; function Change_Owner_Is_Restricted (File : POSIX.IO.File_Descriptor) return POSIX.Change_Owner_Restriction; function Filename_Is_Truncated (Pathname : POSIX.Pathname) return POSIX.Filename_Truncation; function Filename_Is_Truncated (File : POSIX.IO.File_Descriptor) return POSIX.Filename_Truncation; function Synchronized_IO_Is_Supported (Pathname : POSIX.Pathname) return Boolean; function Synchronized_IO_Is_Supported (File : POSIX.IO.File_Descriptor) return Boolean; function Asynchronous_IO_Is_Supported (Pathname : POSIX.Pathname) return Boolean; function Asynchronous_IO_Is_Supported (File : POSIX.IO.File_Descriptor) return Boolean; function Prioritized_IO_Is_Supported (Pathname : POSIX.Pathname) return Boolean; function Prioritized_IO_Is_Supported (File : POSIX.IO.File_Descriptor) return Boolean; end POSIX.Configurable_File_Limits;