diff options
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/Animator.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/Animator.java b/src/jogl/classes/com/jogamp/opengl/util/Animator.java index 6d508f227..20ba27c16 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/Animator.java +++ b/src/jogl/classes/com/jogamp/opengl/util/Animator.java @@ -279,6 +279,11 @@ public class Animator extends AnimatorBase { } else { thread = new Thread(threadGroup, runnable, threadName); } + thread.setDaemon(false); // force to be non daemon, regardless of parent thread + if(DEBUG) { + final Thread ct = Thread.currentThread(); + System.err.println("Animator "+ct.getName()+"[daemon "+ct.isDaemon()+"]: starting "+thread.getName()+"[daemon "+thread.isDaemon()+"]"); + } thread.start(); finishLifecycleAction(waitForStartedCondition); return true; |