From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32186 invoked by alias); 20 Nov 2008 17:11:36 -0000 Received: (qmail 32146 invoked by uid 22791); 20 Nov 2008 17:11:34 -0000 X-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_43,SPF_PASS X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 20 Nov 2008 17:10:44 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 849B32F8006 for ; Thu, 20 Nov 2008 17:10:41 +0000 (GMT) X-Virus-Scanned: amavisd-new at ecoscentric.com Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Aj4xyLYwvJw4; Thu, 20 Nov 2008 17:10:40 +0000 (GMT) Message-ID: <49259A0F.9040803@eCosCentric.com> Date: Thu, 20 Nov 2008 17:11:00 -0000 From: Jonathan Larmour User-Agent: Thunderbird 1.5.0.12 (X11/20070530) MIME-Version: 1.0 To: eCos Patches List Subject: X_TLOSS CDL option rename X-Enigmail-Version: 0.94.4.0 OpenPGP: id=A5FB74E6 Content-Type: multipart/mixed; boundary="------------020607010804000508090208" X-Virus-Checked: Checked by ClamAV on sourceware.org Mailing-List: contact ecos-patches-help@ecos.sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-patches-owner@ecos.sourceware.org X-SW-Source: 2008-11/txt/msg00070.txt.bz2 This is a multi-part message in MIME format. --------------020607010804000508090208 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-length: 520 This is just an annoyance of mine (both to me and caused by me :-)) that is useful to clear up before eCos 3.0 rather than after since otherwise it breaks .ecc files then. This names the X_TLOSS CDL option in the standard way, that's all. Jifl -- eCosCentric Limited http://www.eCosCentric.com/ The eCos experts Barnwell House, Barnwell Drive, Cambridge, UK. Tel: +44 1223 245571 Registered in England and Wales: Reg No 4422071. ------["Si fractum non sit, noli id reficere"]------ Opinions==mine --------------020607010804000508090208 Content-Type: text/x-patch; name="libm.xtloss.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="libm.xtloss.patch" Content-length: 1655 Index: ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/language/c/libm/current/ChangeLog,v retrieving revision 1.26 diff -u -5 -p -r1.26 ChangeLog --- ChangeLog 4 Sep 2007 14:26:08 -0000 1.26 +++ ChangeLog 20 Nov 2008 17:09:28 -0000 @@ -1,5 +1,9 @@ +2008-11-20 Jonathan Larmour + + * cdl/libm.cdl: Rename X_TLOSS CDL option to match normal convention. + 2007-09-04 Stephen Finney 2007-09-04 Jonathan Larmour * src/misc/infconst.c: Declare infinity byte order as dependent on double byte order, not integer. Index: cdl/libm.cdl =================================================================== RCS file: /cvs/ecos/ecos/packages/language/c/libm/current/cdl/libm.cdl,v retrieving revision 1.6 diff -u -5 -p -r1.6 libm.cdl --- cdl/libm.cdl 24 Feb 2003 14:28:55 -0000 1.6 +++ cdl/libm.cdl 20 Nov 2008 17:09:28 -0000 @@ -177,15 +177,16 @@ cdl_package CYGPKG_LIBM { signgam variable in thread-safe mode." } } # OTHER CONFIGURATION SETTINGS - cdl_option X_TLOSS { + cdl_option CYGNUM_LIBM_X_TLOSS { display "Bessel function limit of significance" flavor data default_value 1.41484755040568800000e+16; # pi*(2**52) legal_values 1 to 1e308; # FIXME + define X_TLOSS description " For the Bessel functions (j0(), j1(), jn(), y0(), y1(), yn()) this option defines the maximum absolute value of the ordinate before we assume total loss of significance. --------------020607010804000508090208--