Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2010-07-08 17:40:20 +0000
committerThomas Watson2010-07-08 17:40:20 +0000
commitcd27d5c0e8700e1b192b45b7b5a950e406a48a3f (patch)
tree966eac70e60bd5de08474eb744bb633a539cc358
parenteb1c04fad22c8d26b973dbb3016013cfec42b90f (diff)
downloadrt.equinox.framework-cd27d5c0e8700e1b192b45b7b5a950e406a48a3f.tar.gz
rt.equinox.framework-cd27d5c0e8700e1b192b45b7b5a950e406a48a3f.tar.xz
rt.equinox.framework-cd27d5c0e8700e1b192b45b7b5a950e406a48a3f.zip
Bug 313234 - -console <port> terminating OSGi framework in 3.6.RC1R36x_v20100712
-rw-r--r--bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java b/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java
index 5fa9dfa4d..c4875099c 100644
--- a/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java
+++ b/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2009 IBM Corporation and others.
+ * Copyright (c) 2008, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -49,7 +49,7 @@ public class ConsoleManager implements ServiceTrackerCustomizer {
// try to set the socket re-use property, it isn't a problem if it can't be set
}
Thread t = new Thread(this, "ConsoleSocketGetter"); //$NON-NLS-1$
- t.setDaemon(true);
+ t.setDaemon(false);
t.start();
}

Back to the top