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