Pass arch/os in probe
[fio.git] / os / os.h
diff --git a/os/os.h b/os/os.h
index e1c285ce5a5152e6e7cb76af71687efd473dc845..12188156cf280afea5ca29935d74ee794058228b 100644 (file)
--- a/os/os.h
+++ b/os/os.h
@@ -6,6 +6,19 @@
 #include <unistd.h>
 #include <stdlib.h>
 
+enum {
+       os_linux = 1,
+       os_aix,
+       os_freebsd,
+       os_hpux,
+       os_mac,
+       os_netbsd,
+       os_solaris,
+       os_windows,
+
+       os_nr,
+};
+
 #if defined(__linux__)
 #include "os-linux.h"
 #elif defined(__FreeBSD__)