From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> os/os-solaris.h header uses pthread, but doesn't include <pthread.h> which should be to be able to include this header alone. Needed for unittesting of OS specific stuff. Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- os/os-solaris.h | 1 + 1 file changed, 1 insertion(+) diff --git a/os/os-solaris.h b/os/os-solaris.h index 45268b2..a6cd376 100644 --- a/os/os-solaris.h +++ b/os/os-solaris.h @@ -12,6 +12,7 @@ #include <sys/mman.h> #include <sys/dkio.h> #include <sys/byteorder.h> +#include <pthread.h> #include "../file.h" -- 2.9.5 -- 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