1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Mark RequestMonitor done in flushAllCachesAndRefresh

If the request montior is not marked done, the call can hang.

Contributed by STMicroelectronics

Change-Id: I9c7989e889d70d59d420a3d170e1587a2e2abafe
Signed-off-by: Torbjörn Svensson <torbjorn.svensson@st.com>
This commit is contained in:
Torbjörn Svensson 2022-01-25 18:51:47 +01:00
parent d4a17751d5
commit 8dc69b7bac
2 changed files with 2 additions and 1 deletions

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.cdt.dsf;singleton:=true
Bundle-Version: 2.11.0.qualifier
Bundle-Version: 2.11.100.qualifier
Bundle-Activator: org.eclipse.cdt.dsf.internal.DsfPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,

View file

@ -85,6 +85,7 @@ public interface ICommandControlService extends ICommandControl, IDsfService {
* @since 2.10
*/
default public void flushAllCachesAndRefresh(RequestMonitor rm) {
rm.done();
}
}