From 0c52a51dd210e5571db631322b94586de847b0fe Mon Sep 17 00:00:00 2001 From: David Goulet Date: Thu, 26 Jun 2014 15:07:54 -0400 Subject: [PATCH] Fix: lttng-ust-jul: set thread in daemon mode This way, when the JVM stops the main thread, the agent's thread will be automatically shutdown thus making the .dispose() call optional. Signed-off-by: David Goulet Signed-off-by: Mathieu Desnoyers --- liblttng-ust-jul/org/lttng/ust/jul/LTTngAgent.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/liblttng-ust-jul/org/lttng/ust/jul/LTTngAgent.java b/liblttng-ust-jul/org/lttng/ust/jul/LTTngAgent.java index 2485be2d..6717cd1e 100644 --- a/liblttng-ust-jul/org/lttng/ust/jul/LTTngAgent.java +++ b/liblttng-ust-jul/org/lttng/ust/jul/LTTngAgent.java @@ -128,6 +128,7 @@ public class LTTngAgent { 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++; @@ -136,6 +137,7 @@ public class LTTngAgent { 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++; -- 2.34.1