diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-08-01 04:16:12 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-08-01 04:16:12 -0400 |
commit | e2cf30bb7543a99defd457226a39de8d8860fa9e (patch) | |
tree | 7cfd9ff2f51c720b021586a410bb5d3d6e6f1859 /libc/sysdeps/linux/common/bits | |
parent | c02bc5763ba9c8f8b464bca89fba28e091ce1ffc (diff) |
bits/time.h: sync with latest glibc
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/sysdeps/linux/common/bits')
-rw-r--r-- | libc/sysdeps/linux/common/bits/time.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/bits/time.h b/libc/sysdeps/linux/common/bits/time.h index b397b6065..c4269ae47 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. Generic version. - Copyright (C) 1996,1997,1999-2002,2003 Free Software Foundation, Inc. +/* System-dependent timing definitions. Linux version. + Copyright (C) 1996-2014 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 @@ -59,6 +59,12 @@ # define CLOCK_REALTIME_COARSE 5 /* Monotonic system-wide clock, updated only on ticks. */ # define CLOCK_MONOTONIC_COARSE 6 +/* Monotonic system-wide clock that includes time spent in suspension. */ +# define CLOCK_BOOTTIME 7 +/* Like CLOCK_REALTIME but also wakes suspended system. */ +# define CLOCK_REALTIME_ALARM 8 +/* Like CLOCK_BOOTTIME but also wakes suspended system. */ +# define CLOCK_BOOTTIME_ALARM 9 /* Flag to indicate time is absolute. */ # define TIMER_ABSTIME 1 |