Add missing option type
[fio.git] / os / os.h
diff --git a/os/os.h b/os/os.h
index 218766ab1fee160a252dc3bc14a8c5ee69705c79..c8f517b6edc8c8199f1451afbdaf524bc1d926c2 100644 (file)
--- a/os/os.h
+++ b/os/os.h
@@ -14,6 +14,8 @@
 #include "os-solaris.h"
 #elif defined(__APPLE__)
 #include "os-mac.h"
+#elif defined(_AIX)
+#include "os-aix.h"
 #else
 #error "unsupported os"
 #endif
 #include "../lib/strsep.h"
 #endif
 
+#ifdef MSG_DONTWAIT
+#define OS_MSG_DONTWAIT        MSG_DONTWAIT
+#endif
+
 #ifndef FIO_HAVE_FADVISE
 #define fadvise(fd, off, len, advice)  (0)