[uClibc-cvs] svn commit: trunk/uClibc/libc/sysdeps/linux/common/bits

pkj at uclibc.org pkj at uclibc.org
Thu Apr 28 12:48:27 UTC 2005


Author: pkj
Date: 2005-04-28 06:48:26 -0600 (Thu, 28 Apr 2005)
New Revision: 10195

Log:
Updated to match glibc 2.3.4 (adds missing CLOCK_MONOTONIC).


Modified:
   trunk/uClibc/libc/sysdeps/linux/common/bits/time.h


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/bits/time.h
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/bits/time.h	2005-04-28 12:22:23 UTC (rev 10194)
+++ trunk/uClibc/libc/sysdeps/linux/common/bits/time.h	2005-04-28 12:48:26 UTC (rev 10195)
@@ -1,5 +1,5 @@
-/* System-dependent timing definitions.  Linux version.
-   Copyright (C) 1996, 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
+/* System-dependent timing definitions.  Generic version.
+   Copyright (C) 1996,1997,1999-2002,2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -47,14 +47,16 @@
 
 #  ifdef __USE_POSIX199309
 /* Identifier for system-wide realtime clock.  */
-#   define CLOCK_REALTIME	0
+#   define CLOCK_REALTIME		0
+/* Monotonic system-wide clock.  */
+#   define CLOCK_MONOTONIC		1
 /* High-resolution timer from the CPU.  */
 #   define CLOCK_PROCESS_CPUTIME_ID	2
 /* Thread-specific CPU-time clock.  */
 #   define CLOCK_THREAD_CPUTIME_ID	3
 
 /* Flag to indicate time is absolute.  */
-#   define TIMER_ABSTIME	1
+#   define TIMER_ABSTIME		1
 #  endif
 
 # endif	/* bits/time.h */




More information about the uClibc-cvs mailing list