Update abandoned code for sysdeps/generic demise.
[glibc-ports.git] / sysdeps / unix / sysv / irix4 / bits / confname.h
blobed334694cdcae5ec1b27e515ac29a044322aa799
1 /* `sysconf', `pathconf', and `confstr' NAME values. Irix 4 version.
2 Copyright (C) 1994, 1997 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #ifndef _UNISTD_H
21 # error "Never use <bits/confname.h> directly; include <unistd.h> instead."
22 #endif
24 /* Values for the NAME argument to `pathconf' and `fpathconf'. */
25 enum
27 _PC_LINK_MAX = 1,
28 _PC_MAX_CANON,
29 _PC_MAX_INPUT,
30 _PC_NAME_MAX,
31 _PC_PATH_MAX,
32 _PC_PIPE_BUF,
33 _PC_CHOWN_RESTRICTED,
34 _PC_NO_TRUNC,
35 _PC_VDISABLE
38 /* Values for the argument to `sysconf'. */
39 enum
41 _SC_ARG_MAX = 1,
42 _SC_CHILD_MAX,
43 _SC_CLK_TCK,
44 _SC_NGROUPS_MAX,
45 _SC_OPEN_MAX,
46 _SC_JOB_CONTROL,
47 _SC_SAVED_IDS,
48 _SC_VERSION,
50 /* Above are done by the Irix system call.
51 The rest are done by the C library (or are not really implemented). */
53 _SC_STREAM_MAX,
54 _SC_TZNAME_MAX,
55 _SC_PAGESIZE,
57 /* Values for the argument to `sysconf'
58 corresponding to _POSIX2_* symbols. */
59 _SC_BC_BASE_MAX,
60 _SC_BC_DIM_MAX,
61 _SC_BC_SCALE_MAX,
62 _SC_BC_STRING_MAX,
63 _SC_COLL_WEIGHTS_MAX,
64 _SC_EQUIV_CLASS_MAX,
65 _SC_EXPR_NEST_MAX,
66 _SC_LINE_MAX,
67 _SC_RE_DUP_MAX,
69 _SC_2_VERSION,
70 _SC_2_C_BIND,
71 _SC_2_C_DEV,
72 _SC_2_FORT_DEV,
73 _SC_2_FORT_RUN,
74 _SC_2_SW_DEV,
75 _SC_2_LOCALEDEF
78 #ifdef __USE_POSIX2
79 /* Values for the NAME argument to `confstr'. */
80 enum
82 _CS_PATH /* The default search path. */
84 #endif