We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d623003 commit 1f79f44Copy full SHA for 1f79f44
src/ios-deploy/ios-deploy.m
@@ -1512,7 +1512,10 @@ void setup_lldb(AMDeviceRef device, CFURLRef url) {
1512
NSLogOut(@"[100%%] Listening for lldb connections");
1513
}
1514
else {
1515
- create_remote_debug_server_socket(0, device); // start debugserver
+ int connection_id = 0;
1516
+ CFNumberRef cf_connection_id = CFAutorelease(CFNumberCreate(NULL, kCFNumberIntType, &connection_id));
1517
+
1518
+ create_remote_debug_server_socket(cf_connection_id, device); // start debugserver
1519
write_lldb_prep_cmds(device, url); // dump the necessary lldb commands into a file
1520
NSLogOut(@"[100%%] Connecting to remote debug server");
1521
0 commit comments