1 /* Compatibility header for old-style Unix parameters and limits.
2 Copyright (C) 1995-2013 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 <http://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
55 # define NCARGS ARG_MAX
57 /* ARG_MAX is unlimited, but we define NCARGS for BSD programs that want to
58 compare against some fixed limit. */
59 # define NCARGS INT_MAX
64 /* Magical constants. */
66 # define NOGROUP 65535 /* Marker for empty group set member. */
69 # define NODEV ((dev_t) -1) /* Non-existent device. */
73 /* Unit of `st_blocks'. */
77 /* Bit map related macros. */
78 #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
79 #define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
80 #define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
81 #define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
83 /* Macros for counting and rounding. */
85 # define howmany(x, y) (((x) + ((y) - 1)) / (y))
88 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \
89 ? (((x) + (y) - 1) & ~((y) - 1)) \
90 : ((((x) + ((y) - 1)) / (y)) * (y)))
92 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
94 #define powerof2(x) ((((x) - 1) & (x)) == 0)
96 /* Macros for min/max. */
97 #define MIN(a,b) (((a)<(b))?(a):(b))
98 #define MAX(a,b) (((a)>(b))?(a):(b))
101 #endif /* sys/param.h */