------------------------------------------------------------------------ -- These package specifications were extracted from IEEE Std 1003.5-1992, -- IEEE Standard for Information Technology--POSIX Ada Language -- Interfaces--Part 1: Binding System Application Program Interface, -- copyright (c)1992 by the Institute of Electrical and Electronics -- Engineers, Inc. These package specifications represent only a portion -- of the document and are not to be interpreteted as the approved -- consensus standard. The IEEE Std 1003.5-1992 must be used in -- conjunction with these package specifications in order to claim -- conformance. The IEEE takes no responsibility for and will assume no -- liability for damages resulting from the reader's misinpretation of -- said information resulting from its out of context nature. To order -- copies of the IEEE Std 1003.5-1992, 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. ------------------------------------------------------------------------ with POSIX; package POSIX_Configurable_System_Limits is -- Operations to get the configurable system limits function Argument_List_Maximum return POSIX.Argument_List_Maxima; function Child_Processes_Maximum return POSIX.Child_Processes_Maxima; function Groups_Maximum return POSIX.Groups_Maxima; function Open_Files_Maximum return POSIX.Open_Files_Maxima; function Job_Control_Supported return POSIX.Job_Control_Support; function Saved_IDs_Supported return POSIX.Saved_IDs_Support; function Stream_Maximum return POSIX.Stream_Maxima; function Time_Zone_String_Maximum return POSIX.Time_Zone_String_Maxima; type POSIX_Version is @P; function System_POSIX_Version return POSIX_Version; function System_POSIX_Ada_Version return POSIX_Version; end POSIX_Configurable_System_Limits;