From 3f8f13e55f2861a6a1496973ff67b74529b0c2e3 Mon Sep 17 00:00:00 2001 From: jilles Date: Sat, 9 Oct 2010 13:01:25 +0000 Subject: [PATCH] MFC r211980: Correct value for _POSIX_AIO_LISTIO_MAX in . All the "Minimum Values" (POSIX.1-2008 XBD 13 Headers ) are now correct. These should all be exactly as they are in the specification; the possibly higher values we support are announced differently. PR: standards/104743 git-svn-id: svn://svn.freebsd.org/base/stable/8@213655 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- include/limits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/limits.h b/include/limits.h index 3f770cc34..c6c435073 100644 --- a/include/limits.h +++ b/include/limits.h @@ -74,7 +74,7 @@ #endif #if __POSIX_VISIBLE >= 199309 -#define _POSIX_AIO_LISTIO_MAX 16 +#define _POSIX_AIO_LISTIO_MAX 2 #define _POSIX_AIO_MAX 1 #define _POSIX_DELAYTIMER_MAX 32 #define _POSIX_MQ_OPEN_MAX 8 -- 2.45.0