X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=os%2Fos-netbsd.h;h=4b0269e6cab673311576689d514db5b09d49d822;hb=79c896a122a7a39b840257215e622bdeff8272f1;hp=8f61ec549aa83cc65e037ef3e4299f1f61c547e8;hpb=7ed4d7abf0d7720d532d9680ebf69745d9270a5e;p=fio.git diff --git a/os/os-netbsd.h b/os/os-netbsd.h index 8f61ec54..4b0269e6 100644 --- a/os/os-netbsd.h +++ b/os/os-netbsd.h @@ -1,7 +1,10 @@ #ifndef FIO_OS_NETBSD_H #define FIO_OS_NETBSD_H +#define FIO_OS os_netbsd + #include +#include #include /* XXX hack to avoid confilcts between rbtree.h and */ #define rb_node _rb_node @@ -12,13 +15,11 @@ #include "../file.h" -#define FIO_HAVE_POSIXAIO -#define FIO_HAVE_FADVISE #define FIO_HAVE_ODIRECT -#define FIO_HAVE_STRSEP -#define FIO_HAVE_FDATASYNC #define FIO_USE_GENERIC_BDEV_SIZE #define FIO_USE_GENERIC_RAND +#define FIO_USE_GENERIC_INIT_RANDOM_STATE +#define FIO_HAVE_GETTID #undef FIO_HAVE_CPU_AFFINITY /* XXX notyet */ @@ -28,6 +29,10 @@ #define PTHREAD_STACK_MIN 4096 #endif +#define fio_swap16(x) bswap16(x) +#define fio_swap32(x) bswap32(x) +#define fio_swap64(x) bswap64(x) + typedef off_t off64_t; static inline int blockdev_invalidate_cache(struct fio_file *f) @@ -45,6 +50,11 @@ static inline unsigned long long os_phys_mem(void) return mem; } +static inline int gettid(void) +{ + return (int) _lwp_self(); +} + #ifdef MADV_FREE #define FIO_MADV_FREE MADV_FREE #endif