OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [language/] [c/] [libc/] [time/] [v2_0/] [ChangeLog] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
2003-02-24  Jonathan Larmour  
2
 
3
        * cdl/time.cdl: Fix doc link.
4
 
5
2003-01-28  Jonathan Larmour  
6
 
7
        * cdl/time.cdl: Correct reference to
8
        CYGSEM_LIBC_TIME_POSIX_TIME_ROUTINES in CYGPKG_LIBC_TIME_TESTS to
9
        CYGFUN_LIBC_TIME_POSIX.
10
 
11
2003-01-27  Gary Thomas  
12
 
13
        * tests/strptime.c:
14
        * src/strptime.cxx:
15
        * include/time.h:
16
        * cdl/time.cdl: Add support for strptime().
17
 
18
2002-05-14  Jesper Skov  
19
 
20
        * cdl/time.cdl: Added -Wno-format to the compiler flags. This is
21
        to avoid warnings about Y2K problems with the format specifiers
22
        used in the strftime test.
23
 
24
2002-01-09  Nick Garnett  
25
 
26
        * tests/clock.c (cyg_start): Added CYG_TEST_INIT() to
27
        NOTAPPLICABLE version of cyg_start() so that the breakpoints are
28
        correctly sequenced in the testfarm and it does not think that
29
        this is a failure.
30
 
31
2001-06-22  Jesper Skov  
32
 
33
        * cdl/time.cdl (CYGFUN_LIBC_TIME_SUS_EXTNS): Added.
34
        * src/strftime.cxx (do_format): Added some Single UNIX
35
        extensions.
36
 
37
2001-04-25  Bart Veer  
38
 
39
        * tests/time.c (MAX_TIMEOUT):
40
        Increase timeout to cope with fast architectures such as the
41
        synthetic target.
42
 
43
2001-04-17  Bart Veer  
44
 
45
        * tests/clock.c:
46
        Cope with synthetic target reorg
47
 
48
2000-11-29  Jonathan Larmour  
49
 
50
        * tests/clock.c: Some targets are quite inconsistent, so skip
51
        6 samples now, and increase the tolerance to 40%.
52
        Also NA if tracing enabled.
53
        Also output the mean and maximum error reached, even when passing.
54
 
55
2000-11-27  Jesper Skov  
56
 
57
        * tests/clock.c: Skip fourth sample too.
58
 
59
2000-11-14  Jesper Skov  
60
 
61
        * tests/clock.c: Skip first three samples.
62
 
63
2000-10-30  Jonathan Larmour  
64
 
65
        * include/time.inl: Ensure POSIX *_r functions can be accessed by
66
        non-POSIX implementation even when CYGFUN_LIBC_TIME_POSIX is off.
67
 
68
        * src/asctime_r.cxx: No need to make conditional on posix CDL option -
69
        we may want to define an internal-only function.
70
        * src/ctime_r.cxx: Ditto
71
        * src/gmtime_r.cxx: Ditto
72
        * src/localtime_r.cxx: Ditto
73
 
74
        * cdl/time.cdl: abs() is also a requirement
75
 
76
        * src/clock.cxx (clock): Always use unsigned long longs for temp
77
        variables (and make sure it's used), rather than making
78
        assumptions about clock_t.
79
 
80
        * tests/clock.c: Rewrite
81
 
82
2000-07-26  Jonathan Larmour  
83
 
84
        * cdl/time.cdl: Add CYGINT_ISO_DIV dependency
85
 
86
2000-07-24  Jonathan Larmour  
87
 
88
        * src/time.cxx:
89
        * src/settime.cxx:
90
        Wallclock moved to io/
91
 
92
2000-06-20  Jonathan Larmour  
93
 
94
        * include/time.inl (__gmtime_r): Don't save leap year status when
95
        calculating tm_wday
96
 
97
2000-06-17  Jonathan Larmour  
98
 
99
        * include/time.inl (gmtime_r): Deal with boundary case correctly
100
 
101
        * tests/gmtime.c (test): Add a couple more test cases
102
 
103
2000-05-02  Jonathan Larmour  
104
 
105
        * include/time.h: Just use the defaults for time_t, clock_t and
106
        CLOCKS_PER_SEC in isoinfra
107
 
108
        * New package
109
        Separated original libc out into separate packages on functional
110
        boundaries.
111
        Header files are now managed by isoinfra package
112
        Plenty of cleanups done, but no major functionality changes
113
 
114
//===========================================================================
115
//####ECOSGPLCOPYRIGHTBEGIN####
116
// -------------------------------------------
117
// This file is part of eCos, the Embedded Configurable Operating System.
118
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
119
//
120
// eCos is free software; you can redistribute it and/or modify it under
121
// the terms of the GNU General Public License as published by the Free
122
// Software Foundation; either version 2 or (at your option) any later version.
123
//
124
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
125
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
126
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
127
// for more details.
128
//
129
// You should have received a copy of the GNU General Public License along
130
// with eCos; if not, write to the Free Software Foundation, Inc.,
131
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
132
//
133
// As a special exception, if other files instantiate templates or use macros
134
// or inline functions from this file, or you compile this file and link it
135
// with other works to produce a work based on this file, this file does not
136
// by itself cause the resulting work to be covered by the GNU General Public
137
// License. However the source code for this file must still be made available
138
// in accordance with section (3) of the GNU General Public License.
139
//
140
// This exception does not invalidate any other reasons why a work based on
141
// this file might be covered by the GNU General Public License.
142
//
143
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
144
// at http://sources.redhat.com/ecos/ecos-license/
145
// -------------------------------------------
146
//####ECOSGPLCOPYRIGHTEND####
147
//===========================================================================

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.