about summary refs log tree commit diff
path: root/posix/bits
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-08-30 16:56:03 +0000
committerUlrich Drepper <drepper@redhat.com>2004-08-30 16:56:03 +0000
commit409f749345d4a4f09e44ab855daf631252b8fae6 (patch)
treec96abd458782791582e62a142ecad495951f6a37 /posix/bits
parent6442d5d71b1f9573a23767b5f42b71df0eb5ed70 (diff)
downloadglibc-409f749345d4a4f09e44ab855daf631252b8fae6.tar.gz
glibc-409f749345d4a4f09e44ab855daf631252b8fae6.tar.xz
glibc-409f749345d4a4f09e44ab855daf631252b8fae6.zip
Update.
2004-08-30  Jakub Jelinek  <jakub@redhat.com>

	* posix/bits/posix1_lim.h (_POSIX_CHILD_MAX, _POSIX_OPEN_MAX): If
	not __USE_XOPEN2K, use the Unix98 mandated values.
Diffstat (limited to 'posix/bits')
-rw-r--r--posix/bits/posix1_lim.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/posix/bits/posix1_lim.h b/posix/bits/posix1_lim.h
index 5176e46e9b..71c58f7605 100644
--- a/posix/bits/posix1_lim.h
+++ b/posix/bits/posix1_lim.h
@@ -38,7 +38,11 @@
 #define	_POSIX_ARG_MAX		4096
 
 /* Maximum simultaneous processes per real user ID.  */
-#define	_POSIX_CHILD_MAX	25
+#ifdef __USE_XOPEN2K
+# define _POSIX_CHILD_MAX	25
+#else
+# define _POSIX_CHILD_MAX	6
+#endif
 
 /* Minimal number of timer expiration overruns.  */
 #define _POSIX_DELAYTIMER_MAX	32
@@ -77,7 +81,11 @@
 #endif
 
 /* Number of files one process can have open at once.  */
-#define	_POSIX_OPEN_MAX		20
+#ifdef __USE_XOPEN2K
+# define _POSIX_OPEN_MAX	20
+#else
+# define _POSIX_OPEN_MAX	16
+#endif
 
 /* Number of descriptors that a process may examine with `pselect' or
    `select'.  */