summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2014-01-15 21:57:56 +0100
committerGravatar Nikias Bassen2014-01-15 21:57:56 +0100
commitb16986f04b1c6652330f656d175ff134a9adce2b (patch)
treeae876d47357cfb7c0735146352240838ed13ade1
parent5005c852e20969868db8021709f372dd07d7821a (diff)
downloadlibusbmuxd-b16986f04b1c6652330f656d175ff134a9adce2b.tar.gz
libusbmuxd-b16986f04b1c6652330f656d175ff134a9adce2b.tar.bz2
removed mutex lock - concurrency issues where caused by tag mismatch
-rw-r--r--src/libusbmuxd.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/libusbmuxd.c b/src/libusbmuxd.c
index f52a1c2..1cf6dcb 100644
--- a/src/libusbmuxd.c
+++ b/src/libusbmuxd.c
@@ -80,15 +80,8 @@ static struct collection devices;
static usbmuxd_event_cb_t event_cb = NULL;
#ifdef WIN32
HANDLE devmon = NULL;
-CRITICAL_SECTION mutex;
-static int mutex_initialized = 0;
-#define LOCK if (!mutex_initialized) { InitializeCriticalSection(&mutex); mutex_initialized = 1; } EnterCriticalSection(&mutex);
-#define UNLOCK LeaveCriticalSection(&mutex);
#else
pthread_t devmon;
-pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
-#define LOCK pthread_mutex_lock(&mutex)
-#define UNLOCK pthread_mutex_unlock(&mutex)
#endif
static int listenfd = -1;
@@ -596,15 +589,12 @@ retry:
}
tag = ++use_tag;
- LOCK;
if (send_listen_packet(sfd, tag) <= 0) {
- UNLOCK;
DEBUG(1, "%s: ERROR: could not send listen packet\n", __func__);
close_socket(sfd);
return -1;
}
if (usbmuxd_get_result(sfd, tag, &res, NULL) && (res != 0)) {
- UNLOCK;
close_socket(sfd);
if ((res == RESULT_BADVERSION) && (proto_version == 1)) {
proto_version = 0;
@@ -613,7 +603,6 @@ retry:
DEBUG(1, "%s: ERROR: did not get OK but %d\n", __func__, res);
return -1;
}
- UNLOCK;
return sfd;
}
@@ -826,7 +815,6 @@ retry:
}
tag = ++use_tag;
- LOCK;
if ((proto_version == 1) && (try_list_devices)) {
if (send_list_devices_packet(sfd, tag) > 0) {
plist_t list = NULL;
@@ -842,7 +830,6 @@ retry:
dev = device_record_from_plist(props);
usbmuxd_device_info_t *devinfo = device_info_from_device_record(dev);
if (!devinfo) {
- UNLOCK;
DEBUG(1, "%s: can't create device info object\n", __func__);
free(payload);
return -1;
@@ -855,7 +842,6 @@ retry:
if (res == RESULT_BADVERSION) {
proto_version = 0;
}
- UNLOCK;
close_socket(sfd);
try_list_devices = 0;
goto retry;
@@ -870,7 +856,6 @@ retry:
if (usbmuxd_get_result(sfd, tag, &res, NULL) && (res == 0)) {
listen_success = 1;
} else {
- UNLOCK;
close_socket(sfd);
if ((res == RESULT_BADVERSION) && (proto_version == 1)) {
proto_version = 0;
@@ -882,7 +867,6 @@ retry:
}
if (!listen_success) {
- UNLOCK;
DEBUG(1, "%s: Could not send listen request!\n", __func__);
return -1;
}
@@ -897,7 +881,6 @@ retry:
usbmuxd_device_info_t *devinfo = device_info_from_device_record(dev);
if (!devinfo) {
- UNLOCK;
DEBUG(1, "%s: can't create device info object\n", __func__);
free(payload);
return -1;
@@ -933,7 +916,6 @@ retry:
}
got_device_list:
- UNLOCK;
// explicitly close connection
close_socket(sfd);