22 lines
500 B
Diff
22 lines
500 B
Diff
diff --git a/src/syscall-x86_64.h b/src/syscall-x86_64.h
|
|
index 0eccef3..fd71da9 100644
|
|
--- a/src/syscall-x86_64.h
|
|
+++ b/src/syscall-x86_64.h
|
|
@@ -1,6 +1,16 @@
|
|
+#ifndef __NR_io_setup
|
|
#define __NR_io_setup 206
|
|
+#endif
|
|
+#ifndef __NR_io_destroy
|
|
#define __NR_io_destroy 207
|
|
+#endif
|
|
+#ifndef __NR_io_getevents
|
|
#define __NR_io_getevents 208
|
|
+#endif
|
|
+#ifndef __NR_io_submit
|
|
#define __NR_io_submit 209
|
|
+#endif
|
|
+#ifndef __NR_io_cancel
|
|
#define __NR_io_cancel 210
|
|
+#endif
|
|
#define __NR_io_pgetevents 333
|