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

View file

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