Update copyright dates with scripts/update-copyrights.
[glibc.git] / sysdeps / unix / sysv / linux / hppa / sys / timerfd.h
blobaa59dcd475021f86acdf88ebd9f626f61aa19a22
1 /* Copyright (C) 2008-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library. If not, see
16 <http://www.gnu.org/licenses/>. */
18 #ifndef _SYS_TIMERFD_H
19 #define _SYS_TIMERFD_H 1
21 #include <time.h>
24 /* Bits to be set in the FLAGS parameter of `timerfd_create'. */
25 enum
27 TFD_CLOEXEC = 010000000,
28 #define TFD_CLOEXEC TFD_CLOEXEC
29 TFD_NONBLOCK = 000200004 /* HPUX has separate NDELAY & NONBLOCK */
30 #define TFD_NONBLOCK TFD_NONBLOCK
34 /* Bits to be set in the FLAGS parameter of `timerfd_settime'. */
35 enum
37 TFD_TIMER_ABSTIME = 1 << 0
38 #define TFD_TIMER_ABSTIME TFD_TIMER_ABSTIME
42 __BEGIN_DECLS
44 /* Return file descriptor for new interval timer source. */
45 extern int timerfd_create (clockid_t __clock_id, int __flags) __THROW;
47 /* Set next expiration time of interval timer source UFD to UTMR. If
48 FLAGS has the TFD_TIMER_ABSTIME flag set the timeout value is
49 absolute. Optionally return the old expiration time in OTMR. */
50 extern int timerfd_settime (int __ufd, int __flags,
51 const struct itimerspec *__utmr,
52 struct itimerspec *__otmr) __THROW;
54 /* Return the next expiration time of UFD. */
55 extern int timerfd_gettime (int __ufd, struct itimerspec *__otmr) __THROW;
57 __END_DECLS
59 #endif /* sys/timerfd.h */