Move the huge page size defines into arch code
[fio.git] / os.h
diff --git a/os.h b/os.h
index b44d34c6b5ef07dea4c5c7fe2c05be09c5abbe9e..3f83905d5b31f4adbf5a7f1c74db8b2a444049ef 100644 (file)
--- a/os.h
+++ b/os.h
 #define OS_O_DIRECT                    O_DIRECT
 #endif
 
+#ifndef FIO_HAVE_HUGETLB
+#define SHM_HUGETLB                    0
+#define FIO_HUGE_PAGE                  0
+#else
+#ifndef FIO_HUGE_PAGE
+#define FIO_HUGE_PAGE                  4194304
+#endif
+#endif
+
+#if __GNUC__ < 3
+#define __must_check
+#else
+#define __must_check                   __attribute__((warn_unused_result))
+#endif
+
 #endif