1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[229947][dstore] interruption to Thread.sleep() should not stop waitForUpdate()

This commit is contained in:
David McKnight 2008-05-02 14:27:19 +00:00
parent 46f70ec4b4
commit 24081aea76

View file

@ -324,6 +324,8 @@ public class StatusMonitor implements IDomainListener, ICommunicationsListener
}
catch (InterruptedException e)
{
// Continue waiting in case of spurious interrupt.
// We check the progress monitor to listen for Eclipse Shutdown.
continue;
}
if (WaitThreshold > 0) // update timer count if
@ -375,6 +377,8 @@ public class StatusMonitor implements IDomainListener, ICommunicationsListener
}
catch (InterruptedException e)
{
// Continue waiting in case of spurious interrupt.
// We check the progress monitor to listen for Eclipse Shutdown.
continue;
}