From a25009872304f17514089afb48a3e860e7cb9cfe Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 12 Nov 2014 21:58:30 +0100 Subject: common: Add thread+mutex implementation and use it where applicable --- src/preflight.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'src/preflight.c') diff --git a/src/preflight.c b/src/preflight.c index c74e49d..f83c8b6 100644 --- a/src/preflight.c +++ b/src/preflight.c @@ -26,8 +26,6 @@ #include #include -#include - #include #ifdef HAVE_LIBIMOBILEDEVICE @@ -42,6 +40,8 @@ #include "conf.h" #include "log.h" +#include "common/thread.h" + #ifdef HAVE_LIBIMOBILEDEVICE enum connection_type { CONNECTION_USBMUXD = 1 @@ -344,18 +344,14 @@ void preflight_worker_device_add(struct device_info* info) memcpy(infocopy, info, sizeof(struct device_info)); - pthread_t th; - pthread_attr_t attr; - - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - - int perr = pthread_create(&th, &attr, preflight_worker_handle_device_add, infocopy); + thread_t th; + int perr = thread_create(&th, preflight_worker_handle_device_add, infocopy); if (perr != 0) { free(infocopy); usbmuxd_log(LL_ERROR, "ERROR: failed to start preflight worker thread for device %s: %s (%d). Invoking client_device_add() directly but things might not work as expected.", info->serial, strerror(perr), perr); client_device_add(info); } + thread_detach(th); #else client_device_add(info); #endif -- cgit v1.1-32-gdbae