X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os.h;h=da80fbd4f7207e66a0cbb9821bdfabcf389f6ebf;hp=3ee1368944855c58edaa1002fb896197f800a84e;hb=2dc84ba74186eb9ef4dde0f08dc20571c62e001e;hpb=ebac4655dd3624f3296ff83be48e0cdc02852f18 diff --git a/os.h b/os.h index 3ee13689..da80fbd4 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,11 +41,23 @@ #define ioprio_set(which, who, prio) (0) #endif -struct thread_data; -extern int fio_libaio_init(struct thread_data *); -extern int fio_posixaio_init(struct thread_data *); -extern int fio_syncio_init(struct thread_data *); -extern int fio_mmapio_init(struct thread_data *); -extern int fio_sgio_init(struct thread_data *); +#ifndef FIO_HAVE_ODIRECT +#define OS_O_DIRECT 0 +#else +#define OS_O_DIRECT O_DIRECT +#endif + +#ifndef FIO_HAVE_HUGETLB +#define SHM_HUGETLB 0 +#define FIO_HUGE_PAGE 0 +#else +#define FIO_HUGE_PAGE (4096 * 1024) +#endif + +#if __GNUC__ < 3 +#define __must_check +#else +#define __must_check __attribute__((warn_unused_result)) +#endif #endif