diff options
author | Nikias Bassen | 2011-09-03 02:07:09 +0200 |
---|---|---|
committer | Martin Szulecki | 2012-03-18 20:40:54 +0100 |
commit | 6a83ef58a1032e3b336587e2f3a19659ae325c25 (patch) | |
tree | 27e12297bc66bd22a0cfc86459413a49a0d998f2 /src/installation_proxy.h | |
parent | b586203dbef26f9e94325b57867478eda504e5a1 (diff) | |
download | libimobiledevice-6a83ef58a1032e3b336587e2f3a19659ae325c25.tar.gz libimobiledevice-6a83ef58a1032e3b336587e2f3a19659ae325c25.tar.bz2 |
Remove gthread dependency and use pthreads instead
Diffstat (limited to 'src/installation_proxy.h')
-rw-r--r-- | src/installation_proxy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/installation_proxy.h b/src/installation_proxy.h index b497d62..811ead6 100644 --- a/src/installation_proxy.h +++ b/src/installation_proxy.h @@ -21,15 +21,15 @@ #ifndef IINSTALLATION_PROXY_H #define IINSTALLATION_PROXY_H -#include <glib.h> +#include <pthread.h> #include "libimobiledevice/installation_proxy.h" #include "property_list_service.h" struct instproxy_client_private { property_list_service_client_t parent; - GMutex *mutex; - GThread *status_updater; + pthread_mutex_t mutex; + pthread_t status_updater; }; #endif |