From owner-freebsd-standards@FreeBSD.ORG Sat Oct 9 14:40:03 2010 Return-Path: Delivered-To: freebsd-standards@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DB78106566B for ; Sat, 9 Oct 2010 14:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 533FC8FC17 for ; Sat, 9 Oct 2010 14:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o99Ee3ht074419 for ; Sat, 9 Oct 2010 14:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o99Ee3dF074418; Sat, 9 Oct 2010 14:40:03 GMT (envelope-from gnats) Date: Sat, 9 Oct 2010 14:40:03 GMT Message-Id: <201010091440.o99Ee3dF074418@freefall.freebsd.org> To: freebsd-standards@FreeBSD.org From: dfilter@FreeBSD.org (dfilter service) Cc: Subject: Re: standards/104743: commit references a PR X-BeenThere: freebsd-standards@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Standards compliance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2010 14:40:03 -0000 The following reply was made to PR standards/104743; it has been noted by GNATS. From: dfilter@FreeBSD.org (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: standards/104743: commit references a PR Date: Sat, 9 Oct 2010 13:01:31 +0000 (UTC) Author: jilles Date: Sat Oct 9 13:01:25 2010 New Revision: 213655 URL: http://svn.freebsd.org/changeset/base/213655 Log: 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 Modified: stable/8/include/limits.h Directory Properties: stable/8/include/ (props changed) Modified: stable/8/include/limits.h ============================================================================== --- stable/8/include/limits.h Sat Oct 9 12:57:06 2010 (r213654) +++ stable/8/include/limits.h Sat Oct 9 13:01:25 2010 (r213655) @@ -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 _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"