diff options
| author | 2011-09-03 02:07:09 +0200 | |
|---|---|---|
| committer | 2012-03-18 20:40:54 +0100 | |
| commit | 6a83ef58a1032e3b336587e2f3a19659ae325c25 (patch) | |
| tree | 27e12297bc66bd22a0cfc86459413a49a0d998f2 /src/sbservices.h | |
| parent | b586203dbef26f9e94325b57867478eda504e5a1 (diff) | |
| download | libimobiledevice-6a83ef58a1032e3b336587e2f3a19659ae325c25.tar.gz libimobiledevice-6a83ef58a1032e3b336587e2f3a19659ae325c25.tar.bz2 | |
Remove gthread dependency and use pthreads instead
Diffstat (limited to 'src/sbservices.h')
| -rw-r--r-- | src/sbservices.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sbservices.h b/src/sbservices.h index 3a4120f..1c85fe8 100644 --- a/src/sbservices.h +++ b/src/sbservices.h | |||
| @@ -21,14 +21,14 @@ | |||
| 21 | #ifndef ISBSERVICES_H | 21 | #ifndef ISBSERVICES_H |
| 22 | #define ISBSERVICES_H | 22 | #define ISBSERVICES_H |
| 23 | 23 | ||
| 24 | #include <glib.h> | 24 | #include <pthread.h> |
| 25 | 25 | ||
| 26 | #include "libimobiledevice/sbservices.h" | 26 | #include "libimobiledevice/sbservices.h" |
| 27 | #include "property_list_service.h" | 27 | #include "property_list_service.h" |
| 28 | 28 | ||
| 29 | struct sbservices_client_private { | 29 | struct sbservices_client_private { |
| 30 | property_list_service_client_t parent; | 30 | property_list_service_client_t parent; |
| 31 | GMutex *mutex; | 31 | pthread_mutex_t mutex; |
| 32 | }; | 32 | }; |
| 33 | 33 | ||
| 34 | #endif | 34 | #endif |
