1
0
Fork 0
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:
Alain Magloire 2002-10-28 14:43:27 +00:00
parent c13106f98a
commit 66b60c7ba4

View file

@ -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();