diff options
author | dgp <dgp@users.sourceforge.net> | 2014-07-22 18:12:27 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-07-22 18:12:27 (GMT) |
commit | 5eaa2197549763a6fdadd43b3ba152cb452e7de7 (patch) | |
tree | 32cf1a24d00bcad25440bad46ae6c3eeb83b4c5b /tests/ioCmd.test | |
parent | 2c10c359b554a094f8cca63fe20ec15fe01b0a01 (diff) | |
download | tcl-5eaa2197549763a6fdadd43b3ba152cb452e7de7.zip tcl-5eaa2197549763a6fdadd43b3ba152cb452e7de7.tar.gz tcl-5eaa2197549763a6fdadd43b3ba152cb452e7de7.tar.bz2 |
Avoid [thread::exit]; Using it leads to memleaks.
Diffstat (limited to 'tests/ioCmd.test')
-rw-r--r-- | tests/ioCmd.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ioCmd.test b/tests/ioCmd.test index 8d35ec7..dcca1f5 100644 --- a/tests/ioCmd.test +++ b/tests/ioCmd.test @@ -2814,7 +2814,9 @@ test iocmd.tf-24.17.bug3522560 {postevent for transfered channel} \ update } LOG THREAD-LOOP-DONE - thread::exit + #thread::exit + # Thread exits cause leaks; Use clean thread shutdown + set forever yourGirl } LOG MAIN_WAITING |