# HG changeset patch # User Ed Swartz # Date 1284591255 18000 # Node ID 57928d8e56f3c63b5c175873883b7bef73273dcd # Parent 264d7a9481041336239c13546470457f25e2a07f Add a missing TCFMonitorThread#stop = true call to avoid deadlock diff -r 264d7a948104 -r 57928d8e56f3 connectivity/com.nokia.tcf/src/com/nokia/tcf/impl/TCAPIConnection.java --- a/connectivity/com.nokia.tcf/src/com/nokia/tcf/impl/TCAPIConnection.java Wed Sep 15 17:28:48 2010 -0500 +++ b/connectivity/com.nokia.tcf/src/com/nokia/tcf/impl/TCAPIConnection.java Wed Sep 15 17:54:15 2010 -0500 @@ -441,6 +441,7 @@ } if (this.monitorThread != null) { this.stopTCFMonitorThread = true; + this.monitorThread.stop = true; try { this.monitorThread.join(); } catch (InterruptedException e) {