forked from I2P_Developers/i2p.i2p
Router: Hopefully fix rare shutdown deadlock
via RouterAppManager.shutdown() ... log(CRIT) ... addBubble()
This commit is contained in:
@ -261,9 +261,11 @@ public class RouterAppManager extends ClientAppManagerImpl {
|
|||||||
* @since 0.9.66
|
* @since 0.9.66
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void addBubble(String svc, String text) {
|
public void addBubble(String svc, String text) {
|
||||||
|
synchronized(_bubbles) {
|
||||||
setBubble(svc, getBubbleCount(svc) + 1, text);
|
setBubble(svc, getBubbleCount(svc) + 1, text);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// end ClientAppManager interface
|
/// end ClientAppManager interface
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user