1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Bug 344890: We don't support starting a new process on a remote target yet

This commit is contained in:
Marc Khouzam 2011-05-05 19:37:10 +00:00
parent d1cb95f6ed
commit 9503913d77

View file

@ -327,6 +327,12 @@ public class GDBProcesses_7_2 extends GDBProcesses_7_1 {
return false;
}
// We don't yet support starting a new process on a remote target
// Bug 344890
if (type == SessionType.REMOTE && fBackend.getIsAttachSession()) {
return false;
}
return true;
}