Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-02-10 01:56:46 +0300
committerChristopher Faylor <me@cgf.cx>2004-02-10 01:56:46 +0300
commit3536f0fb2bfacd1a8aca675c2ab1cd1fbf3e5798 (patch)
treec5efe6336d05027de1b48e31afdcd27c2c515d8a /newlib
parent6a6e493af42339c283fbd1683053b22f851825e7 (diff)
* libc/include/time.h (TIMER_RELTIME): New define.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/include/time.h6
2 files changed, 9 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 220a9122d..6e298d197 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-09 Christopher Faylor <cgf@redhat.com>
+
+ * libc/include/time.h (TIMER_RELTIME): New define.
+
2004-02-09 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/Makefile.am: Add mallstatsr to LIBADD_OBJS.
diff --git a/newlib/libc/include/time.h b/newlib/libc/include/time.h
index f83c38d05..a50bd608f 100644
--- a/newlib/libc/include/time.h
+++ b/newlib/libc/include/time.h
@@ -202,7 +202,11 @@ extern "C" {
/* Flag indicating time is "absolute" with respect to the clock
associated with a time. */
-#define TIMER_ABSTIME 4
+#define TIMER_ABSTIME 4
+#ifdef __CYGWIN__
+# define TIMER_RELTIME 0 /* For compatibility with HP/UX, Solaris,
+ others? */
+#endif
/* Manifest Constants, P1003.4b/D8, p. 55 */