diff options
| author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2005-04-28 12:48:26 +0000 | 
|---|---|---|
| committer | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2005-04-28 12:48:26 +0000 | 
| commit | c1cc2549bd2bd3266bf9912bb56874f99f77413e (patch) | |
| tree | 245bc512a33b4a24f9be99e18b7a551a04576549 /libc/sysdeps/linux/common/bits | |
| parent | e48b13e6c726e852c3696e1395fabc0981f19b32 (diff) | |
| download | uClibc-alpine-c1cc2549bd2bd3266bf9912bb56874f99f77413e.tar.bz2 uClibc-alpine-c1cc2549bd2bd3266bf9912bb56874f99f77413e.tar.xz  | |
Updated to match glibc 2.3.4 (adds missing CLOCK_MONOTONIC).
Diffstat (limited to 'libc/sysdeps/linux/common/bits')
| -rw-r--r-- | libc/sysdeps/linux/common/bits/time.h | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/common/bits/time.h b/libc/sysdeps/linux/common/bits/time.h index e551c23a4..7ed54bfa7 100644 --- a/libc/sysdeps/linux/common/bits/time.h +++ b/libc/sysdeps/linux/common/bits/time.h @@ -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 */  | 
