diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-03 04:42:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-03 04:42:14 +0000 |
commit | 1e543c0cc620324b04da6891b9b7848da8704411 (patch) | |
tree | 0c31a34ecfd5acba4afa00b8117616b500a711c3 /sysdeps/generic | |
parent | 8f3846a978212ebfb1c3bbaa436bd0b1668afa27 (diff) | |
download | glibc-1e543c0cc620324b04da6891b9b7848da8704411.zip glibc-1e543c0cc620324b04da6891b9b7848da8704411.tar.gz glibc-1e543c0cc620324b04da6891b9b7848da8704411.tar.bz2 |
Define CLOCK_MONOTONIC.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/bits/time.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/generic/bits/time.h b/sysdeps/generic/bits/time.h index df0202a..b3184d1 100644 --- a/sysdeps/generic/bits/time.h +++ b/sysdeps/generic/bits/time.h @@ -1,5 +1,5 @@ /* System-dependent timing definitions. Generic version. - Copyright (C) 1996,1997,1999,2000,2001,2002 Free Software Foundation, Inc. + 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 @@ -44,6 +44,8 @@ extern long int __sysconf (int); # ifdef __USE_POSIX199309 /* Identifier for system-wide realtime clock. */ # 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. */ |