this.lttngThreadUser = new LTTngThread(this.sessiondAddr,
this.lttngHandlerUser, this.registerSem);
this.sessiondThUser = new Thread(lttngThreadUser);
+ this.sessiondThUser.setDaemon(true);
this.sessiondThUser.start();
/* Wait for registration done of per-user sessiond */
nr_acquires++;
this.lttngThreadRoot = new LTTngThread(this.sessiondAddr,
this.lttngHandlerRoot, this.registerSem);
this.sessiondThRoot = new Thread(lttngThreadRoot);
+ this.sessiondThRoot.setDaemon(true);
this.sessiondThRoot.start();
/* Wait for registration done of system-wide sessiond */
nr_acquires++;