diff options
| author | 2009-06-15 05:11:56 +0200 | |
|---|---|---|
| committer | 2009-06-15 05:11:56 +0200 | |
| commit | b45560b1a982aab1063eb6fbd65122650efafe9d (patch) | |
| tree | c3c2ec684ced4788a29d5fb4e081ff9e91123894 | |
| parent | 12c244a76cc6a75a385ddfc5dc44734825383fe2 (diff) | |
| download | usbmuxd-b45560b1a982aab1063eb6fbd65122650efafe9d.tar.gz usbmuxd-b45560b1a982aab1063eb6fbd65122650efafe9d.tar.bz2 | |
Additional mutex when writing to device.
| -rw-r--r-- | src/main.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| @@ -824,11 +824,11 @@ static void *usbmuxd_client_init_thread(void *arg)  	pthread_mutex_unlock(&usbmux_mutex);  	// setup connection to iPhone/iPod -//    pthread_mutex_lock(&usbmux_mutex); +	pthread_mutex_lock(&cur_dev->writer_mutex);  	res =  		usbmux_new_client(cur_dev->phone, 0, ntohs(c_req->tcp_dport),  						  &(cdata->muxclient)); -//    pthread_mutex_unlock(&usbmux_mutex); +	pthread_mutex_unlock(&cur_dev->writer_mutex);  	if (res != 0) {  		usbmuxd_send_result(cdata->socket, c_req->header.tag, res); @@ -870,7 +870,9 @@ static void *usbmuxd_client_init_thread(void *arg)  	// time to clean up  	if (cdata && cdata->muxclient) {	// should be non-NULL +		pthread_mutex_lock(&cdata->dev->writer_mutex);  		usbmux_free_client(cdata->muxclient); +		pthread_mutex_unlock(&cdata->dev->writer_mutex);  	}    leave: | 
