1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 01:36: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,6 +85,7 @@ public class IndexManager implements IElementChangedListener {
projectsMap = Collections.synchronizedMap(new HashMap());
CTagsRunner ctags = new CTagsRunner(this);
thread = new Thread(ctags, "C Tags indexer");
thread.setDaemon(true);
thread.setPriority (Thread.NORM_PRIORITY - 1);
thread.start();
addAll();