Merge branch 'fix-libpmem' of https://github.com/lukaszstolarczuk/fio
[fio.git] / os / os-netbsd.h
index c06261d4a2a8407d7d7640df6c19d38a4e9f60a3..624c7fa5096daf40d646886ec38a6058f26061c5 100644 (file)
 #define fio_swap32(x)  bswap32(x)
 #define fio_swap64(x)  bswap64(x)
 
-typedef off_t off64_t;
+#ifdef CONFIG_PTHREAD_GETAFFINITY
+#define FIO_HAVE_GET_THREAD_AFFINITY
+#define fio_get_thread_affinity(mask)  \
+       pthread_getaffinity_np(pthread_self(), sizeof(mask), &(mask))
+#endif
 
 static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
 {
@@ -65,10 +69,12 @@ static inline unsigned long long os_phys_mem(void)
        return mem;
 }
 
+#ifndef CONFIG_HAVE_GETTID
 static inline int gettid(void)
 {
        return (int) _lwp_self();
 }
+#endif
 
 static inline unsigned long long get_fs_free_size(const char *path)
 {