mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 338136: Don't show the inferior process in the debug view
This commit is contained in:
parent
72a30d6b6c
commit
d5d4f19105
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ public class ConsolePageParticipant implements IConsolePageParticipant, IDebugCo
|
||||||
if (launch != null) {
|
if (launch != null) {
|
||||||
IProcess[] processes = launch.getProcesses();
|
IProcess[] processes = launch.getProcesses();
|
||||||
if (processes != null && processes.length > 0) {
|
if (processes != null && processes.length > 0) {
|
||||||
for (IProcess process : launch.getProcesses()) {
|
for (IProcess process : processes) {
|
||||||
if (process instanceof InferiorRuntimeProcess) {
|
if (process instanceof InferiorRuntimeProcess) {
|
||||||
String groupId = process.getAttribute(IGdbDebugConstants.INFERIOR_GROUPID_ATTR);
|
String groupId = process.getAttribute(IGdbDebugConstants.INFERIOR_GROUPID_ATTR);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue