Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2010-04-21 04:41:18 +0000
committerslewis2010-04-21 04:41:18 +0000
commit6d8d02fc2140f3aed1ca6c2b2127616cf8a07231 (patch)
treee72c1955a7ff6954673ff99a2e46eeecce6d22bb /examples
parentd6f6d51cc090a0f9737b56ed0687b7455c34b69d (diff)
downloadorg.eclipse.ecf-6d8d02fc2140f3aed1ca6c2b2127616cf8a07231.tar.gz
org.eclipse.ecf-6d8d02fc2140f3aed1ca6c2b2127616cf8a07231.tar.xz
org.eclipse.ecf-6d8d02fc2140f3aed1ca6c2b2127616cf8a07231.zip
Fixes for application cardinality and thread
Diffstat (limited to 'examples')
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/plugin.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/plugin.xml b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/plugin.xml
index 8136c9612..7cca1b2ff 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/plugin.xml
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/plugin.xml
@@ -5,8 +5,8 @@
id="HelloHost"
point="org.eclipse.core.runtime.applications">
<application
- cardinality="singleton-global"
- thread="main"
+ cardinality="*"
+ thread="any"
visible="true">
<run
class="org.eclipse.ecf.internal.examples.remoteservices.hello.host.HelloHostApplication">

Back to the top