Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2012-08-06 20:23:18 +0000
committerThomas Watson2012-08-06 20:23:18 +0000
commit97ff997b35c14112ab78c4e6ddc2065712eb5df5 (patch)
tree3b5dc86398055dd3b69ca3fe431da4755e445d5c /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
parent40fa0ceb9608da1ea5b78373aa14ed82f727ceee (diff)
downloadrt.equinox.framework-97ff997b35c14112ab78c4e6ddc2065712eb5df5.tar.gz
rt.equinox.framework-97ff997b35c14112ab78c4e6ddc2065712eb5df5.tar.xz
rt.equinox.framework-97ff997b35c14112ab78c4e6ddc2065712eb5df5.zip
Generate proper timeout framework event.
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
index 79a48267c..9c942f680 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor.java
@@ -150,6 +150,8 @@ public class EquinoxContainerAdaptor extends ModuleContainerAdaptor {
case STOPPED_REFRESH :
case STOPPED_UPDATE :
return FrameworkEvent.STOPPED_UPDATE;
+ case STOPPED_TIMEOUT :
+ return FrameworkEvent.WAIT_TIMEDOUT;
default :
// default to error
return FrameworkEvent.ERROR;

Back to the top