114d96c08SSteve Price /*- 2*2321c474SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 3*2321c474SPedro F. Giffuni * 459deaec5SRodney W. Grimes * Copyright (c) 1988, 1993 559deaec5SRodney W. Grimes * The Regents of the University of California. All rights reserved. 659deaec5SRodney W. Grimes * 759deaec5SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 859deaec5SRodney W. Grimes * modification, are permitted provided that the following conditions 959deaec5SRodney W. Grimes * are met: 1059deaec5SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 1159deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 1259deaec5SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 1359deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 1459deaec5SRodney W. Grimes * documentation and/or other materials provided with the distribution. 15f2556687SWarner Losh * 3. Neither the name of the University nor the names of its contributors 1659deaec5SRodney W. Grimes * may be used to endorse or promote products derived from this software 1759deaec5SRodney W. Grimes * without specific prior written permission. 1859deaec5SRodney W. Grimes * 1959deaec5SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2059deaec5SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2159deaec5SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2259deaec5SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2359deaec5SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2459deaec5SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2559deaec5SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2659deaec5SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2759deaec5SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2859deaec5SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2959deaec5SRodney W. Grimes * SUCH DAMAGE. 3059deaec5SRodney W. Grimes * 3159deaec5SRodney W. Grimes * @(#)limits.h 8.2 (Berkeley) 1/4/94 32a4add9a9SPeter Wemm * $FreeBSD$ 3359deaec5SRodney W. Grimes */ 3459deaec5SRodney W. Grimes 3559deaec5SRodney W. Grimes #ifndef _LIMITS_H_ 3659deaec5SRodney W. Grimes #define _LIMITS_H_ 375f9a7cb3SBruce Evans 38f7eb4ce8SGarrett Wollman #include <sys/cdefs.h> 3959deaec5SRodney W. Grimes 40f7eb4ce8SGarrett Wollman #if __POSIX_VISIBLE 4159deaec5SRodney W. Grimes #define _POSIX_ARG_MAX 4096 4259deaec5SRodney W. Grimes #define _POSIX_LINK_MAX 8 4359deaec5SRodney W. Grimes #define _POSIX_MAX_CANON 255 4459deaec5SRodney W. Grimes #define _POSIX_MAX_INPUT 255 4559deaec5SRodney W. Grimes #define _POSIX_NAME_MAX 14 4659deaec5SRodney W. Grimes #define _POSIX_PIPE_BUF 512 4759deaec5SRodney W. Grimes #define _POSIX_SSIZE_MAX 32767 4859deaec5SRodney W. Grimes #define _POSIX_STREAM_MAX 8 4954574e2aSJilles Tjoelker 5054574e2aSJilles Tjoelker #if __POSIX_VISIBLE >= 200112 5154574e2aSJilles Tjoelker #define _POSIX_CHILD_MAX 25 5254574e2aSJilles Tjoelker #define _POSIX_NGROUPS_MAX 8 5354574e2aSJilles Tjoelker #define _POSIX_OPEN_MAX 20 5454574e2aSJilles Tjoelker #define _POSIX_PATH_MAX 256 55188c541cSGarrett Wollman #define _POSIX_TZNAME_MAX 6 5654574e2aSJilles Tjoelker #else 5754574e2aSJilles Tjoelker #define _POSIX_CHILD_MAX 6 5854574e2aSJilles Tjoelker #define _POSIX_NGROUPS_MAX 0 5954574e2aSJilles Tjoelker #define _POSIX_OPEN_MAX 16 6054574e2aSJilles Tjoelker #define _POSIX_PATH_MAX 255 6154574e2aSJilles Tjoelker #define _POSIX_TZNAME_MAX 3 6254574e2aSJilles Tjoelker #endif 63188c541cSGarrett Wollman 64ab707ec6SKevin Lo #if __POSIX_VISIBLE >= 200112 65188c541cSGarrett Wollman #define BC_BASE_MAX 99 /* max ibase/obase values in bc(1) */ 66188c541cSGarrett Wollman #define BC_DIM_MAX 2048 /* max array elements in bc(1) */ 67188c541cSGarrett Wollman #define BC_SCALE_MAX 99 /* max scale value in bc(1) */ 68188c541cSGarrett Wollman #define BC_STRING_MAX 1000 /* max const string length in bc(1) */ 69ab707ec6SKevin Lo #define CHARCLASS_NAME_MAX 14 /* max character class name size */ 70764a768eSBaptiste Daroussin #define COLL_WEIGHTS_MAX 10 /* max weights for order keyword */ 71188c541cSGarrett Wollman #define EXPR_NEST_MAX 32 /* max expressions nested in expr(1) */ 72188c541cSGarrett Wollman #define LINE_MAX 2048 /* max bytes in an input line */ 73188c541cSGarrett Wollman #define RE_DUP_MAX 255 /* max RE's in interval notation */ 7459deaec5SRodney W. Grimes 7559deaec5SRodney W. Grimes #define _POSIX2_BC_BASE_MAX 99 7659deaec5SRodney W. Grimes #define _POSIX2_BC_DIM_MAX 2048 7759deaec5SRodney W. Grimes #define _POSIX2_BC_SCALE_MAX 99 7859deaec5SRodney W. Grimes #define _POSIX2_BC_STRING_MAX 1000 79ab707ec6SKevin Lo #define _POSIX2_CHARCLASS_NAME_MAX 14 80ab707ec6SKevin Lo #define _POSIX2_COLL_WEIGHTS_MAX 2 8159deaec5SRodney W. Grimes #define _POSIX2_EQUIV_CLASS_MAX 2 8259deaec5SRodney W. Grimes #define _POSIX2_EXPR_NEST_MAX 32 8359deaec5SRodney W. Grimes #define _POSIX2_LINE_MAX 2048 8459deaec5SRodney W. Grimes #define _POSIX2_RE_DUP_MAX 255 85f7eb4ce8SGarrett Wollman #endif 86ab707ec6SKevin Lo #endif 87917e476dSPeter Dufault 88f7eb4ce8SGarrett Wollman #if __POSIX_VISIBLE >= 199309 895a0884b3SJilles Tjoelker #define _POSIX_AIO_LISTIO_MAX 2 90917e476dSPeter Dufault #define _POSIX_AIO_MAX 1 91917e476dSPeter Dufault #define _POSIX_DELAYTIMER_MAX 32 92917e476dSPeter Dufault #define _POSIX_MQ_OPEN_MAX 8 93917e476dSPeter Dufault #define _POSIX_MQ_PRIO_MAX 32 94188c541cSGarrett Wollman #define _POSIX_RTSIG_MAX 8 95917e476dSPeter Dufault #define _POSIX_SEM_NSEMS_MAX 256 96917e476dSPeter Dufault #define _POSIX_SEM_VALUE_MAX 32767 97917e476dSPeter Dufault #define _POSIX_SIGQUEUE_MAX 32 98917e476dSPeter Dufault #define _POSIX_TIMER_MAX 32 9954574e2aSJilles Tjoelker 10054574e2aSJilles Tjoelker #define _POSIX_CLOCKRES_MIN 20000000 101917e476dSPeter Dufault #endif 102917e476dSPeter Dufault 103188c541cSGarrett Wollman #if __POSIX_VISIBLE >= 199506 104188c541cSGarrett Wollman #define _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4 105188c541cSGarrett Wollman #define _POSIX_THREAD_KEYS_MAX 128 106188c541cSGarrett Wollman #define _POSIX_THREAD_THREADS_MAX 64 107188c541cSGarrett Wollman #endif 108188c541cSGarrett Wollman 109f7eb4ce8SGarrett Wollman #if __POSIX_VISIBLE >= 200112 110f7eb4ce8SGarrett Wollman #define _POSIX_HOST_NAME_MAX 255 111188c541cSGarrett Wollman #define _POSIX_LOGIN_NAME_MAX 9 112188c541cSGarrett Wollman #define _POSIX_SS_REPL_MAX 4 113188c541cSGarrett Wollman #define _POSIX_SYMLINK_MAX 255 114188c541cSGarrett Wollman #define _POSIX_SYMLOOP_MAX 8 115188c541cSGarrett Wollman #define _POSIX_TRACE_EVENT_NAME_MAX 30 116188c541cSGarrett Wollman #define _POSIX_TRACE_NAME_MAX 8 117188c541cSGarrett Wollman #define _POSIX_TRACE_SYS_MAX 8 118188c541cSGarrett Wollman #define _POSIX_TRACE_USER_EVENT_MAX 32 119188c541cSGarrett Wollman #define _POSIX_TTY_NAME_MAX 9 120188c541cSGarrett Wollman 121188c541cSGarrett Wollman #define _POSIX_RE_DUP_MAX _POSIX2_RE_DUP_MAX 122f7eb4ce8SGarrett Wollman #endif 123eca6bf6aSAndrey A. Chernov 124e39ab7e0SJilles Tjoelker #if __XSI_VISIBLE || __POSIX_VISIBLE >= 200809 125130a08a3SRuslan Bukin #define NL_ARGMAX 65536 /* max # of position args for printf */ 126e39ab7e0SJilles Tjoelker #define NL_MSGMAX 32767 127e39ab7e0SJilles Tjoelker #define NL_SETMAX 255 128e39ab7e0SJilles Tjoelker #define NL_TEXTMAX 2048 129e39ab7e0SJilles Tjoelker #endif 130e39ab7e0SJilles Tjoelker 131f7eb4ce8SGarrett Wollman #if __XSI_VISIBLE 132f7eb4ce8SGarrett Wollman #define _XOPEN_IOV_MAX 16 133188c541cSGarrett Wollman #define _XOPEN_NAME_MAX 255 134188c541cSGarrett Wollman #define _XOPEN_PATH_MAX 1024 13571b9b9d8SAndrey A. Chernov #define PASS_MAX 128 /* _PASSWORD_LEN from <pwd.h> */ 136eca6bf6aSAndrey A. Chernov 13771b9b9d8SAndrey A. Chernov #define NL_LANGMAX 31 /* max LANG name length */ 138eca6bf6aSAndrey A. Chernov #define NL_NMAX 1 139eca6bf6aSAndrey A. Chernov #endif 14059deaec5SRodney W. Grimes 141b30a7779STim J. Robbins #define MB_LEN_MAX 6 /* 31-bit UTF-8 */ 142b30a7779STim J. Robbins 143104a9b7eSAlexander Kabaev #include <sys/limits.h> 1445f9a7cb3SBruce Evans 145f7eb4ce8SGarrett Wollman #if __POSIX_VISIBLE 14659deaec5SRodney W. Grimes #include <sys/syslimits.h> 14714d96c08SSteve Price #endif 14859deaec5SRodney W. Grimes 14959deaec5SRodney W. Grimes #endif /* !_LIMITS_H_ */ 150