1 /* Compatibility header for old-style Unix parameters and limits.
2 Copyright (C) 1995-2020 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
20 #define _SYS_PARAM_H 1
25 #include <sys/types.h>
27 #include <endian.h> /* Define BYTE_ORDER et al. */
28 #include <signal.h> /* Define NSIG. */
30 /* This file defines some things in system-specific ways. */
31 #include <bits/param.h>
34 /* BSD names for some <limits.h> values. */
38 #if !defined NGROUPS && defined NGROUPS_MAX
39 # define NGROUPS NGROUPS_MAX
41 #if !defined MAXSYMLINKS && defined SYMLOOP_MAX
42 # define MAXSYMLINKS SYMLOOP_MAX
44 #if !defined CANBSIZ && defined MAX_CANON
45 # define CANBSIZ MAX_CANON
47 #if !defined MAXPATHLEN && defined PATH_MAX
48 # define MAXPATHLEN PATH_MAX
50 #if !defined NOFILE && defined OPEN_MAX
51 # define NOFILE OPEN_MAX
53 #if !defined MAXHOSTNAMELEN && defined HOST_NAME_MAX
54 # define MAXHOSTNAMELEN HOST_NAME_MAX
58 # define NCARGS ARG_MAX
60 /* ARG_MAX is unlimited, but we define NCARGS for BSD programs that want to
61 compare against some fixed limit. */
62 # define NCARGS INT_MAX
67 /* Magical constants. */
69 # define NOGROUP 65535 /* Marker for empty group set member. */
72 # define NODEV ((dev_t) -1) /* Non-existent device. */
76 /* Unit of `st_blocks'. */
78 # define DEV_BSIZE 512
82 /* Bit map related macros. */
83 #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
84 #define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
85 #define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
86 #define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
88 /* Macros for counting and rounding. */
90 # define howmany(x, y) (((x) + ((y) - 1)) / (y))
93 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \
94 ? (((x) + (y) - 1) & ~((y) - 1)) \
95 : ((((x) + ((y) - 1)) / (y)) * (y)))
97 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
99 #define powerof2(x) ((((x) - 1) & (x)) == 0)
101 /* Macros for min/max. */
102 #define MIN(a,b) (((a)<(b))?(a):(b))
103 #define MAX(a,b) (((a)>(b))?(a):(b))
106 #endif /* sys/param.h */