The following changes since commit 88045e04fdd81dbb584d70f9faeb1f6498a85159: backend: fix data direction flow check (2012-09-25 12:12:36 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Roger Pau Monne (1): netbsd: fix gettid os/os-netbsd.h | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-) --- Diff of recent changes: diff --git a/os/os-netbsd.h b/os/os-netbsd.h index aef578e..de687ba 100644 --- a/os/os-netbsd.h +++ b/os/os-netbsd.h @@ -4,8 +4,8 @@ #define FIO_OS os_netbsd #include <errno.h> +#include <lwp.h> #include <sys/param.h> -#include <sys/thr.h> #include <sys/endian.h> /* XXX hack to avoid confilcts between rbtree.h and <sys/rb.h> */ #define rb_node _rb_node @@ -63,10 +63,7 @@ static inline unsigned long long os_phys_mem(void) static inline int gettid(void) { - long lwpid; - - thr_self(&lwpid); - return (int) lwpid; + return (int) _lwp_self(); } #ifdef MADV_FREE -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html