summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sys/shm.h3
-rw-r--r--include/sys/timerfd.h6
2 files changed, 9 insertions, 0 deletions
diff --git a/include/sys/shm.h b/include/sys/shm.h
index ce3029f5..bca6ed62 100644
--- a/include/sys/shm.h
+++ b/include/sys/shm.h
@@ -16,6 +16,9 @@ extern "C" {
#include <sys/ipc.h>
#include <bits/shm.h>
+#define SHM_R 0400
+#define SHM_W 0200
+
#define SHM_RDONLY 010000
#define SHM_RND 020000
#define SHM_REMAP 040000
diff --git a/include/sys/timerfd.h b/include/sys/timerfd.h
index 0afa7b0e..df645fe8 100644
--- a/include/sys/timerfd.h
+++ b/include/sys/timerfd.h
@@ -6,6 +6,12 @@ extern "C" {
#endif
#include <time.h>
+#include <fcntl.h>
+
+#define TFD_NONBLOCK O_NONBLOCK
+#define TFD_CLOEXEC O_CLOEXEC
+
+#define TFD_TIMER_ABSTIME 1
int timerfd_create(int, int);
int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);