changeset 2282:fd733100beda

* cdl/time.cdl: Don't bother inlining mktime() or gmtime_r() by default - they're too big to be worth it.
author jlarmour
date Thu, 31 Aug 2006 19:17:34 +0000
parents 7102a12c64ab
children 61a94be4cc1b
files packages/language/c/libc/time/current/ChangeLog packages/language/c/libc/time/current/cdl/time.cdl
diffstat 2 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/packages/language/c/libc/time/current/ChangeLog
+++ b/packages/language/c/libc/time/current/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-31  Jonathan Larmour  <jifl@eCosCentric.com>
+
+	* cdl/time.cdl: Don't bother inlining mktime() or
+	gmtime_r() by default - they're too big to be worth it.
+
 2006-08-24  Alexander Neundorf <alexander.neundorf@jenoptik.com>
 
 	* src/strftime.cxx: Fixed "%I" (Time in 12 hour modus was 1 hour off)
@@ -176,6 +181,7 @@ 2000-05-02  Jonathan Larmour  <jlarmour@
 // -------------------------------------------
 // This file is part of eCos, the Embedded Configurable Operating System.
 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
+// Copyright (C) 2006 eCosCentric Ltd.
 //
 // eCos is free software; you can redistribute it and/or modify it under
 // the terms of the GNU General Public License as published by the Free
--- a/packages/language/c/libc/time/current/cdl/time.cdl
+++ b/packages/language/c/libc/time/current/cdl/time.cdl
@@ -9,6 +9,7 @@
 ## -------------------------------------------
 ## This file is part of eCos, the Embedded Configurable Operating System.
 ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
+## Copyright (C) 2006 eCosCentric Ltd.
 ##
 ## eCos is free software; you can redistribute it and/or modify it under
 ## the terms of the GNU General Public License as published by the Free
@@ -238,7 +239,7 @@ cdl_package CYGPKG_LIBC_TIME {
     
         cdl_option CYGIMP_LIBC_TIME_MKTIME_INLINE {
             display       "mktime()"
-            default_value 1
+            default_value 0
             description   "
                 Allow the mktime() function to be inlined"
         }
@@ -262,7 +263,7 @@ cdl_package CYGPKG_LIBC_TIME {
         cdl_option CYGIMP_LIBC_TIME_GMTIME_R_INLINE {
             display       "gmtime_r()"
             requires      CYGFUN_LIBC_TIME_POSIX
-            default_value 1
+            default_value 0
             description   "
                 Allow the gmtime_r() function to be inlined"
         }