Update all Windows files except dobuild.cmd to use LF line endings
[fio.git] / os / os-freebsd.h
index 7a79dd0f70ca42c5063d7a58741f61fba75a62ed..c55a7c315ca2efc2ab609f5d60019da0805f46b3 100644 (file)
@@ -1,21 +1,28 @@
 #ifndef FIO_OS_FREEBSD_H
 #define FIO_OS_FREEBSD_H
 
+#define        FIO_OS  os_freebsd
+
 #include <errno.h>
 #include <sys/sysctl.h>
 #include <sys/disk.h>
+#include <sys/thr.h>
+#include <sys/socket.h>
 
 #include "../file.h"
 
-#define FIO_HAVE_POSIXAIO
 #define FIO_HAVE_ODIRECT
-#define FIO_HAVE_STRSEP
 #define FIO_USE_GENERIC_RAND
+#define FIO_USE_GENERIC_INIT_RANDOM_STATE
 #define FIO_HAVE_CHARDEV_SIZE
-#define FIO_HAVE_CLOCK_MONOTONIC
+#define FIO_HAVE_GETTID
 
 #define OS_MAP_ANON            MAP_ANON
 
+#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_size(struct fio_file *f, unsigned long long *bytes)
@@ -51,6 +58,14 @@ static inline unsigned long long os_phys_mem(void)
        return mem;
 }
 
+static inline int gettid(void)
+{
+       long lwpid;
+
+       thr_self(&lwpid);
+       return (int) lwpid;
+}
+
 #ifdef MADV_FREE
 #define FIO_MADV_FREE  MADV_FREE
 #endif