You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If users don't install iTunes, the usbmuxd_events_unsubscribe will be blocked about 2~3 secs.
usbmuxd_events_unsubscribe calls thread_join to wait the thread to be finished, but the sleep in usbmuxd_listen_poll delay it. Should not use the sleep function, it's better to use a event to wait for timeout, then set the event in usbmuxd_events_unsubscribe .
The text was updated successfully, but these errors were encountered:
If users don't install iTunes, the usbmuxd_events_unsubscribe will be blocked about 2~3 secs.
usbmuxd_events_unsubscribe calls thread_join to wait the thread to be finished, but the sleep in usbmuxd_listen_poll delay it. Should not use the sleep function, it's better to use a event to wait for timeout, then set the event in usbmuxd_events_unsubscribe .
The text was updated successfully, but these errors were encountered: