浏览代码

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.
Szabolcs Nagy 8 年之前
父节点
当前提交
d800403032
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      include/sys/timerfd.h

+ 1 - 0
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;