mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 00:45:28 +02:00
Small fix to avoid showing an pid of 0 in the debug view when only running one process
This commit is contained in:
parent
c26e38fedc
commit
518693304f
1 changed files with 2 additions and 1 deletions
|
@ -300,7 +300,8 @@ public class MIProcesses extends AbstractDsfService implements IMIProcesses {
|
|||
private CommandCache fContainerCommandCache;
|
||||
|
||||
private static final String FAKE_THREAD_ID = "0"; //$NON-NLS-1$
|
||||
private static final String UNIQUE_GROUP_ID = "0"; //$NON-NLS-1$
|
||||
// The unique id should be an empty string so that the views know not to display the fake id
|
||||
private static final String UNIQUE_GROUP_ID = ""; //$NON-NLS-1$
|
||||
|
||||
public MIProcesses(DsfSession session) {
|
||||
super(session);
|
||||
|
|
Loading…
Add table
Reference in a new issue