Flexible I/O Tester development
 help / color / mirror / Atom feed
* [PATCH] Use pthread_self instead of thr_self on BSD
@ 2011-07-30  9:43 Bruce Cran
  2011-07-30 10:55 ` Jens Axboe
  0 siblings, 1 reply; 6+ messages in thread
From: Bruce Cran @ 2011-07-30  9:43 UTC (permalink / raw)
  To: Jens Axboe; +Cc: fio

[-- Attachment #1: Type: text/plain, Size: 151 bytes --]

The attached patch uses pthread_self to get the thread ID instead of the 
non-POSIX thr_self This fixes a compiler warning on FreeBSD.

-- 
Bruce Cran

[-- Attachment #2: fio.diff --]
[-- Type: text/plain, Size: 1108 bytes --]

diff --git a/os/os-freebsd.h b/os/os-freebsd.h
index fad051f..9da792e 100644
--- a/os/os-freebsd.h
+++ b/os/os-freebsd.h
@@ -2,6 +2,7 @@
 #define FIO_OS_FREEBSD_H

 #include <errno.h>
+#include <pthread.h>
 #include <sys/sysctl.h>
 #include <sys/disk.h>

@@ -54,10 +55,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) pthread_self();
 }

 #ifdef MADV_FREE
diff --git a/os/os-netbsd.h b/os/os-netbsd.h
index 7f5f484..c4a923f 100644
--- a/os/os-netbsd.h
+++ b/os/os-netbsd.h
@@ -2,6 +2,7 @@
 #define FIO_OS_NETBSD_H

 #include <errno.h>
+#include <pthread.h>
 #include <sys/param.h>
 /* XXX hack to avoid confilcts between rbtree.h and <sys/rb.h> */
 #define        rb_node _rb_node
@@ -48,10 +49,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) pthread_self();
 }

 #ifdef MADV_FREE

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-07-30 12:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-30  9:43 [PATCH] Use pthread_self instead of thr_self on BSD Bruce Cran
2011-07-30 10:55 ` Jens Axboe
2011-07-30 11:17   ` Bruce Cran
2011-07-30 11:23     ` Jens Axboe
2011-07-30 12:36       ` Bruce Cran
2011-07-30 12:57         ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox