[PATCH] Basic support for a cpu cycle eater job
[fio.git] / os.h
diff --git a/os.h b/os.h
index 1160f44c435c967625c152829f889b5bcbd5951d..68660b6d4ff406c7bb4bbb8aa4dcdc756d70f6d4 100644 (file)
--- a/os.h
+++ b/os.h
@@ -42,7 +42,9 @@
 #endif
 
 #ifndef FIO_HAVE_ODIRECT
-#define OS_O_DIRECT                    (0)
+#define OS_O_DIRECT                    0
+#else
+#define OS_O_DIRECT                    O_DIRECT
 #endif
 
 struct thread_data;
@@ -52,5 +54,6 @@ extern int fio_syncio_init(struct thread_data *);
 extern int fio_mmapio_init(struct thread_data *);
 extern int fio_sgio_init(struct thread_data *);
 extern int fio_spliceio_init(struct thread_data *);
+extern int fio_cpuio_init(struct thread_data *);
 
 #endif