From owner-freebsd-standards Sun Dec 1 4: 0: 6 2002 Delivered-To: freebsd-standards@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2FA237B401 for ; Sun, 1 Dec 2002 04:00:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CC0E43EB2 for ; Sun, 1 Dec 2002 04:00:03 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1C03x3088149 for ; Sun, 1 Dec 2002 04:00:03 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB1C02Mh088027; Sun, 1 Dec 2002 04:00:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AF7437B401 for ; Sun, 1 Dec 2002 03:54:41 -0800 (PST) Received: from nerdhaven.nuug.no (nerdhaven.nuug.no [158.36.191.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF65543EBE for ; Sun, 1 Dec 2002 03:54:40 -0800 (PST) (envelope-from pere@nuug.no) Received: by nerdhaven.nuug.no (Postfix, from userid 1020) id EE83612; Sun, 1 Dec 2002 12:54:31 +0100 (CET) Message-Id: <20021201115431.EE83612@nerdhaven.nuug.no> Date: Sun, 1 Dec 2002 12:54:31 +0100 (CET) From: Petter Reinholdtsen Reply-To: Petter Reinholdtsen To: FreeBSD-gnats-submit@FreeBSD.org Cc: pere@hungry.com X-Send-Pr-Version: 3.113 Subject: standards/45896: setnetgrent() should return error code Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Number: 45896 >Category: standards >Synopsis: setnetgrent() should return error code >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-standards >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 01 04:00:02 PST 2002 >Closed-Date: >Last-Modified: >Originator: Petter Reinholdtsen >Release: FreeBSD 4.7-RELEASE-p1 i386 >Organization: The Hungry Programmers >Environment: System: FreeBSD nerdhaven.nuug.no 4.7-RELEASE-p1 FreeBSD 4.7-RELEASE-p1 #0: Sun Oct 27 09:49:54 CET 2002 root@nerdhaven.nuug.no:/usr/obj/usr/src/sys/NERDHAVEN i386 >Description: The current setnetgrent() call do not return any value. This make it impossible to detect the difference between an non-existand netgroup, and an empty netgroup. The same call return 'int' on most other Unices (Solaris, HP/UX, Tru64 Unix, Darwin, Linux). The value on these unixes is 1 if the group exist, and 0 if it is missing. >How-To-Repeat: The following code fail on FreeBSD. #include int main() { int found = setnetgrent("non-existand-netgroup"); return 0; } >Fix: Change the API for setnetgrent() to return 1 on success, and 0 on failure. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Sun Dec 1 7:27: 7 2002 Delivered-To: freebsd-standards@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99E4437B401; Sun, 1 Dec 2002 07:27:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4757A43EC5; Sun, 1 Dec 2002 07:27:06 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from freefall.freebsd.org (mike@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB1FR6x3075668; Sun, 1 Dec 2002 07:27:06 -0800 (PST) (envelope-from mike@freefall.freebsd.org) Received: (from mike@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB1FR6nF075664; Sun, 1 Dec 2002 07:27:06 -0800 (PST) Date: Sun, 1 Dec 2002 07:27:06 -0800 (PST) From: Mike Barcroft Message-Id: <200212011527.gB1FR6nF075664@freefall.freebsd.org> To: mike@FreeBSD.org, freebsd-standards@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/45896: setnetgrent() should return error code Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: setnetgrent() should return error code Responsible-Changed-From-To: freebsd-standards->freebsd-bugs Responsible-Changed-By: mike Responsible-Changed-When: Sun Dec 1 07:26:24 PST 2002 Responsible-Changed-Why: Not a standards issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=45896 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Tue Dec 3 23:13:34 2002 Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED65837B401; Tue, 3 Dec 2002 23:13:33 -0800 (PST) Received: from 213-84-207-11.adsl.xs4all.nl (nexus.xs4all.nl [213.84.207.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id C349F43E4A; Tue, 3 Dec 2002 23:13:27 -0800 (PST) (envelope-from asmodai@nexus.ninth-circle.org) Received: by 213-84-207-11.adsl.xs4all.nl (Postfix, from userid 1000) id 4037B4C; Wed, 4 Dec 2002 08:14:21 +0100 (CET) Date: Wed, 4 Dec 2002 08:14:21 +0100 From: Jeroen Ruigrok/asmodai To: Mike Barcroft Cc: Juli Mallett , freebsd-standards@FreeBSD.org Subject: Re: Approval to fix non-GCC users of Message-ID: <20021204071420.GL8580@nexus.ninth-circle.org> References: <20021126194219.A92609@FreeBSD.org> <20021126231641.C67382@espresso.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021126231641.C67382@espresso.q9media.com> Organisation: Ninth Circle Enterprises User-Agent: Mutt/1.5.1i Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -On [20021127 12:04], Mike Barcroft (mike@FreeBSD.org) wrote: >2. TenDRA assumes an older POSIX system and makes wrong assumptions >about some limits it happens to duplicate in its version of >. Known, and working towards getting the new POSIX standard added and made default over the old one, so this shouldn't be a problem longer. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono Ninth Circle Enterprises | WTO + WIPO = DMCA? http://www.tendra.org/ | http://www.anti-dmca.org/ A place for everything, and everything in its place... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Wed Dec 4 8: 7:51 2002 Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45C4F37B401; Wed, 4 Dec 2002 08:07:50 -0800 (PST) Received: from espresso.q9media.com (espresso.q9media.com [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EC2443ECF; Wed, 4 Dec 2002 08:07:49 -0800 (PST) (envelope-from mike@espresso.q9media.com) Received: by espresso.q9media.com (Postfix, from userid 1002) id 8B48F9C11; Wed, 4 Dec 2002 10:58:06 -0500 (EST) Date: Wed, 4 Dec 2002 10:58:06 -0500 From: Mike Barcroft To: Jeroen Ruigrok/asmodai Cc: Juli Mallett , freebsd-standards@FreeBSD.org Subject: Re: Approval to fix non-GCC users of Message-ID: <20021204105806.C74206@espresso.q9media.com> References: <20021126194219.A92609@FreeBSD.org> <20021126231641.C67382@espresso.q9media.com> <20021204071420.GL8580@nexus.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021204071420.GL8580@nexus.ninth-circle.org>; from asmodai@wxs.nl on Wed, Dec 04, 2002 at 08:14:21AM +0100 Organization: The FreeBSD Project Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jeroen Ruigrok/asmodai writes: > -On [20021127 12:04], Mike Barcroft (mike@FreeBSD.org) wrote: > >2. TenDRA assumes an older POSIX system and makes wrong assumptions > >about some limits it happens to duplicate in its version of > >. > > Known, and working towards getting the new POSIX standard added and made > default over the old one, so this shouldn't be a problem longer. Great. I fixed it by just adding #ifndef ... #endif to conflicting constants in TenDRA's limits.h. What about the: #if __GNUC__ #warning "foo" #endif ...coming back with a syntax error problem? Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Thu Dec 5 0:24:28 2002 Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EC8737B401 for ; Thu, 5 Dec 2002 00:24:27 -0800 (PST) Received: from mouton.informatik.rwth-aachen.de (mouton.Informatik.RWTH-Aachen.DE [137.226.194.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2970E43EA9 for ; Thu, 5 Dec 2002 00:24:26 -0800 (PST) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from bsd.localdomain (localhost [127.0.0.1]) by mouton.informatik.rwth-aachen.de (8.12.6/8.12.6) with ESMTP id gB58OFFm053595 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Thu, 5 Dec 2002 09:24:15 +0100 (CET) (envelope-from stolz@bsd.localdomain) Received: (from stolz@localhost) by bsd.localdomain (8.12.6/8.12.6/Submit) id gB58OFHl053594 for standards@freebsd.org; Thu, 5 Dec 2002 09:24:15 +0100 (CET) (envelope-from stolz) Date: Thu, 5 Dec 2002 09:24:14 +0100 From: Volker Stolz To: standards@freebsd.org Subject: nearbyint* not available in math.h Message-ID: <20021205082414.GA53582@i2.informatik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.1i X-PGP-Key: finger vs@lambda.foldr.org X-PGP-Id: 0x3FD1B6B5 Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Could somebody please comment on the functions nearbyint, nearbyintl and nearbyintf? http://www.opengroup.org/onlinepubs/007904975/functions/nearbyint.html says they are an extension to ISO C and part of IEEE Std 1003.1-2001. Is there a workaround to make them available to a port? (IIRC FreeBSD tends to comply with SUSv2, while nearbyint* turned up in v3). -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Thu Dec 5 1:45:22 2002 Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FBC637B401 for ; Thu, 5 Dec 2002 01:45:21 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E21843EA9 for ; Thu, 5 Dec 2002 01:45:20 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id UAA19305; Thu, 5 Dec 2002 20:44:56 +1100 Date: Thu, 5 Dec 2002 20:45:00 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Volker Stolz Cc: standards@FreeBSD.ORG Subject: Re: nearbyint* not available in math.h In-Reply-To: <20021205082414.GA53582@i2.informatik.rwth-aachen.de> Message-ID: <20021205201041.Y5572-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 5 Dec 2002, Volker Stolz wrote: > Could somebody please comment on the functions nearbyint, nearbyintl > and nearbyintf? > > http://www.opengroup.org/onlinepubs/007904975/functions/nearbyint.html > says they are an extension to ISO C and part of IEEE Std 1003.1-2001. > Is there a workaround to make them available to a port? > (IIRC FreeBSD tends to comply with SUSv2, while nearbyint* turned > up in v3). These are part of ISO C (C99), but C99 is not supported yet. rint() and rintf() can be used instead of nearbyint() and nearbyintf() in most applications since they differ in at most the setting of the inexact exception flag (unless this exception is unmasked). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Thu Dec 5 9:43:32 2002 Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EB8A37B401 for ; Thu, 5 Dec 2002 09:43:31 -0800 (PST) Received: from ms-dienst.rz.rwth-aachen.de (ms-2.rz.RWTH-Aachen.DE [134.130.3.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F70A43EB2 for ; Thu, 5 Dec 2002 09:43:30 -0800 (PST) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from ms-1 (ms-dienst.rz.RWTH-Aachen.DE [134.130.3.132]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 (built Feb 21 2002)) with ESMTP id <0H6J00JQZIB5QR@ms-dienst.rz.rwth-aachen.de> for standards@freebsd.org; Tue, 03 Dec 2002 11:54:42 +0100 (MET) Received: from ue250-1.rz.RWTH-Aachen.DE ([134.130.3.33]) by ms-1 (MailMonitor for SMTP v1.2.0 Beta3) ; Tue, 03 Dec 2002 11:54:41 +0100 (MET) Received: from mouton.informatik.rwth-aachen.de (mouton.Informatik.RWTH-Aachen.DE [137.226.194.67]) by ue250-1.rz.RWTH-Aachen.DE (8.12.1/8.11.3/24) with ESMTP id gB3Aliu4009511 for ; Tue, 03 Dec 2002 11:47:44 +0100 (MET) Received: from bsd.localdomain (localhost [127.0.0.1]) by mouton.informatik.rwth-aachen.de (8.12.6/8.12.6) with ESMTP id gB3Alb6G028321 for ; Tue, 03 Dec 2002 11:47:37 +0100 (CET envelope-from stolz@bsd.localdomain) Received: (from stolz@localhost) by bsd.localdomain (8.12.6/8.12.6/Submit) id gB3AlbiZ028320 for standards@freebsd.org; Tue, 03 Dec 2002 11:47:37 +0100 (CET envelope-from stolz) Date: Tue, 03 Dec 2002 11:47:37 +0100 From: Volker Stolz Subject: nearbyint* not available in math.h To: standards@freebsd.org Message-id: <20021203104737.GA28133@i2.informatik.rwth-aachen.de> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: Mutt/1.5.1i X-PGP-Key: finger vs@lambda.foldr.org X-PGP-Id: 0x3FD1B6B5 Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Could somebody please comment on the functions nearbyint, nearbyintl and nearbyintf? http://www.opengroup.org/onlinepubs/007904975/functions/nearbyint.html says they are an extension to ISO C and part of IEEE Std 1003.1-2001. Is there a workaround to make them available to a port? (IIRC FreeBSD tends to comply with SUSv2, while nearbyint* turned up in v3). -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Fri Dec 6 10:30: 4 2002 Delivered-To: freebsd-standards@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8773837B401 for ; Fri, 6 Dec 2002 10:30:02 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA7F943EBE for ; Fri, 6 Dec 2002 10:30:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB6IU1x3076742 for ; Fri, 6 Dec 2002 10:30:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB6IU19l076741; Fri, 6 Dec 2002 10:30:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B45C737B401 for ; Fri, 6 Dec 2002 10:23:24 -0800 (PST) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EC3443E4A for ; Fri, 6 Dec 2002 10:23:24 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.6/8.12.6) with ESMTP id gB6INNlI062747 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK) for ; Fri, 6 Dec 2002 13:23:23 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.6/8.12.6/Submit) id gB6INMg5062746; Fri, 6 Dec 2002 13:23:22 -0500 (EST) (envelope-from wollman) Message-Id: <200212061823.gB6INMg5062746@khavrinen.lcs.mit.edu> Date: Fri, 6 Dec 2002 13:23:22 -0500 (EST) From: Garrett Wollman Reply-To: Garrett Wollman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: standards/46035: pathchk doesn't understand the new meaning of {PATH_MAX} Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Number: 46035 >Category: standards >Synopsis: pathchk doesn't understand the new meaning of {PATH_MAX} >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-standards >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 06 10:30:01 PST 2002 >Closed-Date: >Last-Modified: >Originator: Garrett Wollman >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD Project >Environment: System: FreeBSD khavrinen.lcs.mit.edu 5.0-CURRENT FreeBSD 5.0-CURRENT #609: Mon Nov 25 16:08:14 EST 2002 root@:/usr/src/sys/i386/compile/KHAVRINEN i386 $FreeBSD: src/usr.bin/pathchk/pathchk.c,v 1.2 2002/06/10 10:03:46 tjr Exp $ >Description: pathchk was never updated for the change in {PATH_MAX} semantics made by 1003.1-2001. {PATH_MAX} (and thus, {_POSIX_PATH_MAX}) now include the trailing null character. Thus, pathchk is off by one. >How-To-Repeat: wollman@khavrinen$ pathchk -p `perl -e 'print "/a" x 128'` wollman@khavrinen$ This should have given an error, because {_POSIX_PATH_MAX} is 256, and the path we constructed is (128 * 2 + 1 =) 257 bytes long. >Fix: Subtract 1 in the right places in pathchk.c. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Fri Dec 6 10:33: 4 2002 Delivered-To: freebsd-standards@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C22337B401; Fri, 6 Dec 2002 10:33:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4678F43EBE; Fri, 6 Dec 2002 10:33:03 -0800 (PST) (envelope-from wollman@FreeBSD.org) Received: from freefall.freebsd.org (wollman@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gB6IX3x3078646; Fri, 6 Dec 2002 10:33:03 -0800 (PST) (envelope-from wollman@freefall.freebsd.org) Received: (from wollman@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gB6IX3F3078642; Fri, 6 Dec 2002 10:33:03 -0800 (PST) Date: Fri, 6 Dec 2002 10:33:03 -0800 (PST) From: Garrett Wollman Message-Id: <200212061833.gB6IX3F3078642@freefall.freebsd.org> To: wollman@FreeBSD.org, freebsd-standards@FreeBSD.org, tjr@FreeBSD.org Subject: Re: standards/46035: pathchk doesn't understand the new meaning of {PATH_MAX} Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: pathchk doesn't understand the new meaning of {PATH_MAX} Responsible-Changed-From-To: freebsd-standards->tjr Responsible-Changed-By: wollman Responsible-Changed-When: Fri Dec 6 10:30:59 PST 2002 Responsible-Changed-Why: tjr seems to be the current keeper of pathconf(1). http://www.freebsd.org/cgi/query-pr.cgi?pr=46035 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Fri Dec 6 10:33:53 2002 Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1936437B401; Fri, 6 Dec 2002 10:33:53 -0800 (PST) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6346D43E9C; Fri, 6 Dec 2002 10:33:52 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.6/8.12.6) with ESMTP id gB6IXplI062864 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Fri, 6 Dec 2002 13:33:51 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.6/8.12.6/Submit) id gB6IXp31062861; Fri, 6 Dec 2002 13:33:51 -0500 (EST) (envelope-from wollman) Date: Fri, 6 Dec 2002 13:33:51 -0500 (EST) From: Garrett Wollman Message-Id: <200212061833.gB6IXp31062861@khavrinen.lcs.mit.edu> To: standards@FreeBSD.org Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: standards/46035: pathchk doesn't understand the new meaning of {PATH_MAX} In-Reply-To: <200212061823.gB6INMg5062746@khavrinen.lcs.mit.edu> References: <200212061823.gB6INMg5062746@khavrinen.lcs.mit.edu> Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > pathchk was never updated for the change in {PATH_MAX} > semantics made by 1003.1-2001. {PATH_MAX} (and thus, > {_POSIX_PATH_MAX}) now include the trailing null character. > Thus, pathchk is off by one. The manual page also needs to be updated. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message From owner-freebsd-standards Fri Dec 6 18:13:31 2002 Delivered-To: freebsd-standards@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3F8537B401; Fri, 6 Dec 2002 18:13:30 -0800 (PST) Received: from dibbler.ne.client2.attbi.com (dibbler.ne.client2.attbi.com [66.31.42.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id E995A43EA9; Fri, 6 Dec 2002 18:13:29 -0800 (PST) (envelope-from rodrigc@attbi.com) Received: from dibbler.ne.client2.attbi.com (localhost [127.0.0.1]) by dibbler.ne.client2.attbi.com (8.12.6/8.12.6) with ESMTP id gB72Du3d005757; Fri, 6 Dec 2002 21:13:57 -0500 (EST) (envelope-from rodrigc@dibbler.ne.client2.attbi.com) Received: (from rodrigc@localhost) by dibbler.ne.client2.attbi.com (8.12.6/8.12.6/Submit) id gB72DuXI005756; Fri, 6 Dec 2002 21:13:56 -0500 (EST) Date: Fri, 6 Dec 2002 21:13:56 -0500 From: Craig Rodrigues To: freebsd-standards@freebsd.org Cc: mini@freebsd.org Subject: Missing pthread_attr_setstack(), pthread_attr_getstack()? Message-ID: <20021206211356.A5714@attbi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-standards@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm not sure if this is a -standards issue or not, but I would appreciate clarification. My FreeBSD-current machine appears to lack the pthread_attr_setstack() and pthread_attr_getstack() functions: http://www.opengroup.org/onlinepubs/007904975/functions/pthread_attr_getstack.html These are new additions to the pthread library. Is anyone working on implementing these functions? Would it be OK to open a GNATS PR with this, and label it as a standards issue? Thanks. -- Craig Rodrigues http://www.gis.net/~craigr rodrigc@attbi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message