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.
This commit is contained in:
Szabolcs Nagy 2017-03-05 23:54:52 +00:00 committed by Rich Felker
parent f5638c22e3
commit d800403032
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ extern "C" {
#define TFD_CLOEXEC O_CLOEXEC #define TFD_CLOEXEC O_CLOEXEC
#define TFD_TIMER_ABSTIME 1 #define TFD_TIMER_ABSTIME 1
#define TFD_TIMER_CANCEL_ON_SET (1 << 1)
struct itimerspec; struct itimerspec;