2003-08-07 13:44:09 +04:00
|
|
|
/* $NetBSD: limits.h,v 1.22 2003/08/07 09:44:10 agc Exp $ */
|
1994-10-26 03:55:40 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1998-02-03 00:07:13 +03:00
|
|
|
* Copyright (c) 1988, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:44:09 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-02-03 00:07:13 +03:00
|
|
|
* @(#)limits.h 8.2 (Berkeley) 1/4/94
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LIMITS_H_
|
|
|
|
#define _LIMITS_H_
|
|
|
|
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#include <sys/featuretest.h>
|
|
|
|
|
|
|
|
#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
1993-03-21 12:45:37 +03:00
|
|
|
#define _POSIX_ARG_MAX 4096
|
|
|
|
#define _POSIX_CHILD_MAX 6
|
2002-08-04 22:06:54 +04:00
|
|
|
#define _POSIX_LINK_MAX 8
|
1999-09-27 20:24:39 +04:00
|
|
|
#define _POSIX_LOGIN_NAME_MAX 9
|
1993-03-21 12:45:37 +03:00
|
|
|
#define _POSIX_MAX_CANON 255
|
|
|
|
#define _POSIX_MAX_INPUT 255
|
2002-08-04 22:06:54 +04:00
|
|
|
#define _POSIX_NAME_MAX 14
|
2002-11-18 16:39:33 +03:00
|
|
|
#define _POSIX_NGROUPS_MAX 8
|
|
|
|
#define _POSIX_OPEN_MAX 20
|
2002-08-04 22:06:54 +04:00
|
|
|
#define _POSIX_PATH_MAX 256
|
1998-02-03 00:07:13 +03:00
|
|
|
#define _POSIX_PIPE_BUF 512
|
2002-11-18 16:39:33 +03:00
|
|
|
#define _POSIX_RE_DUP_MAX 255
|
1998-02-03 00:07:13 +03:00
|
|
|
#define _POSIX_SSIZE_MAX 32767
|
|
|
|
#define _POSIX_STREAM_MAX 8
|
2002-11-18 16:39:33 +03:00
|
|
|
#define _POSIX_SYMLINK_MAX 256
|
2003-07-17 01:03:54 +04:00
|
|
|
#define _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4
|
|
|
|
#define _POSIX_THREAD_KEYS_MAX 128
|
|
|
|
#define _POSIX_THREAD_THREADS_MAX 64
|
|
|
|
#define _POSIX_TIMER_MAX 32
|
2002-11-18 16:39:33 +03:00
|
|
|
#define _POSIX_TTY_NAME_MAX 9
|
1998-02-03 00:07:13 +03:00
|
|
|
#define _POSIX_TZNAME_MAX 3
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#define _POSIX2_BC_BASE_MAX 99
|
|
|
|
#define _POSIX2_BC_DIM_MAX 2048
|
|
|
|
#define _POSIX2_BC_SCALE_MAX 99
|
|
|
|
#define _POSIX2_BC_STRING_MAX 1000
|
2002-11-18 16:39:33 +03:00
|
|
|
#define _POSIX2_CHARCLASS_NAME_MAX 14
|
1993-09-22 01:55:40 +04:00
|
|
|
#define _POSIX2_COLL_WEIGHTS_MAX 2
|
1993-03-21 12:45:37 +03:00
|
|
|
#define _POSIX2_EXPR_NEST_MAX 32
|
|
|
|
#define _POSIX2_LINE_MAX 2048
|
|
|
|
#define _POSIX2_RE_DUP_MAX 255
|
1994-10-05 20:16:29 +03:00
|
|
|
|
2002-11-18 16:39:33 +03:00
|
|
|
/*
|
|
|
|
* X/Open CAE Specifications,
|
|
|
|
* adopted in IEEE Std 1003.1-2001 XSI.
|
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 200112L || defined(_XOPEN_SOURCE) || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
1998-08-03 18:32:04 +04:00
|
|
|
#define _XOPEN_IOV_MAX 16
|
2002-11-18 16:39:33 +03:00
|
|
|
#define _XOPEN_NAME_MAX 256
|
|
|
|
#define _XOPEN_PATH_MAX 1024
|
1998-08-03 18:32:04 +04:00
|
|
|
|
2002-11-18 16:39:33 +03:00
|
|
|
#define PASS_MAX 128 /* Legacy */
|
1994-10-05 20:16:29 +03:00
|
|
|
|
2002-11-18 16:39:33 +03:00
|
|
|
#define CHARCLASS_NAME_MAX 14
|
1994-10-05 20:16:29 +03:00
|
|
|
#define NL_ARGMAX 9
|
|
|
|
#define NL_LANGMAX 14
|
|
|
|
#define NL_MSGMAX 32767
|
|
|
|
#define NL_NMAX 1
|
|
|
|
#define NL_SETMAX 255
|
1999-09-07 02:20:50 +04:00
|
|
|
#define NL_TEXTMAX 2048
|
1998-07-08 23:51:25 +04:00
|
|
|
|
2003-01-18 20:10:16 +03:00
|
|
|
/* Always ensure that this is consistent with <stdio.h> */
|
2003-01-18 20:12:13 +03:00
|
|
|
#ifndef TMP_MAX
|
2002-11-18 16:39:33 +03:00
|
|
|
#define TMP_MAX 308915776 /* Legacy */
|
2003-01-18 20:10:16 +03:00
|
|
|
#endif
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#endif /* _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE || _NETBSD_SOURCE */
|
1998-07-08 23:51:25 +04:00
|
|
|
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#endif /* _POSIX_C_SOURCE || _XOPEN_SOURCE || _NETBSD_SOURCE */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#include <machine/limits.h>
|
|
|
|
#include <sys/syslimits.h>
|
|
|
|
|
|
|
|
#endif /* !_LIMITS_H_ */
|