mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
SetDaemon to true.
This commit is contained in:
parent
c13106f98a
commit
66b60c7ba4
1 changed files with 3 additions and 2 deletions
|
@ -85,6 +85,7 @@ public class IndexManager implements IElementChangedListener {
|
||||||
projectsMap = Collections.synchronizedMap(new HashMap());
|
projectsMap = Collections.synchronizedMap(new HashMap());
|
||||||
CTagsRunner ctags = new CTagsRunner(this);
|
CTagsRunner ctags = new CTagsRunner(this);
|
||||||
thread = new Thread(ctags, "C Tags indexer");
|
thread = new Thread(ctags, "C Tags indexer");
|
||||||
|
thread.setDaemon(true);
|
||||||
thread.setPriority (Thread.NORM_PRIORITY - 1);
|
thread.setPriority (Thread.NORM_PRIORITY - 1);
|
||||||
thread.start();
|
thread.start();
|
||||||
addAll();
|
addAll();
|
||||||
|
|
Loading…
Add table
Reference in a new issue