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:
parent
46f70ec4b4
commit
24081aea76
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue