X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os.h;h=1bce2f64028324d7b1e982ce8c1d42305cb31ec5;hp=093a722ebfce1d80f78a76bd99c58fdb01d1d906;hb=0c7e37a04aa04ba22e812f8de7971fcef46b8191;hpb=8756e4d421722eaeb089067aeaaf317d05d53a57 diff --git a/os.h b/os.h index 093a722e..1bce2f64 100644 --- a/os.h +++ b/os.h @@ -5,6 +5,8 @@ #include "os-linux.h" #elif defined(__FreeBSD__) #include "os-freebsd.h" +#elif defined(__sun__) +#include "os-solaris.h" #else #error "unsupported os" #endif @@ -39,6 +41,12 @@ #define ioprio_set(which, who, prio) (0) #endif +#ifndef FIO_HAVE_ODIRECT +#define OS_O_DIRECT 0 +#else +#define OS_O_DIRECT O_DIRECT +#endif + struct thread_data; extern int fio_libaio_init(struct thread_data *); extern int fio_posixaio_init(struct thread_data *);