diff options
author | Szabolcs Nagy <nsz@port70.net> | 2017-03-05 23:54:52 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2017-11-05 18:40:58 -0500 |
commit | d800403032b17b266430f0679c71f032de430197 (patch) | |
tree | a244ad6a83799c4a13b59167c36aef7ebf2767f7 /include/sys | |
parent | f5638c22e3599a720f80da76f2827e5b0f6383ae (diff) | |
download | musl-d800403032b17b266430f0679c71f032de430197.tar.gz musl-d800403032b17b266430f0679c71f032de430197.tar.xz musl-d800403032b17b266430f0679c71f032de430197.zip |
add TFD_TIMER_CANCEL_ON_SET that timerfd.h was missing
linux commit 575b1967e10a1f3038266244d2c7a3ca6b99fed8 moved timerfd apis to a new uapi header which showed musl was missing this flag.
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/timerfd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/timerfd.h b/include/sys/timerfd.h index 9724d903..2794d36a 100644 --- a/include/sys/timerfd.h +++ b/include/sys/timerfd.h @@ -12,6 +12,7 @@ extern "C" { #define TFD_CLOEXEC O_CLOEXEC #define TFD_TIMER_ABSTIME 1 +#define TFD_TIMER_CANCEL_ON_SET (1 << 1) struct itimerspec; |