X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=os.h;h=1160f44c435c967625c152829f889b5bcbd5951d;hb=2c0ecd28459b6a1b236c865defb5ef76ce8bfa02;hp=093a722ebfce1d80f78a76bd99c58fdb01d1d906;hpb=8756e4d421722eaeb089067aeaaf317d05d53a57;p=fio.git diff --git a/os.h b/os.h index 093a722e..1160f44c 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,10 @@ #define ioprio_set(which, who, prio) (0) #endif +#ifndef FIO_HAVE_ODIRECT +#define OS_O_DIRECT (0) +#endif + struct thread_data; extern int fio_libaio_init(struct thread_data *); extern int fio_posixaio_init(struct thread_data *);