summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2002-09-30 00:08:01 (GMT)
committerdavygrvy <davygrvy@pobox.com>2002-09-30 00:08:01 (GMT)
commit6067cbda26bb2ab8ba3a478df836c0fd310f25f9 (patch)
treeb91e3ef4f4219d0c5978529e49cc5ba69e0f1eb0 /ChangeLog
parent29783f18958d2188696539256bf9abe426cdef51 (diff)
downloadtcl-6067cbda26bb2ab8ba3a478df836c0fd310f25f9.zip
tcl-6067cbda26bb2ab8ba3a478df836c0fd310f25f9.tar.gz
tcl-6067cbda26bb2ab8ba3a478df836c0fd310f25f9.tar.bz2
Added proper exiting conditions using Win32 console signals. This handles
the existing lack of a Ctrl+C exit to call exit handlers when built for thread support. Also, properly handles exits from other conditions such as CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT, and CTRL_SHUTDOWN_EVENT signals. In all cases, exit handlers will be called. [Bug 219355]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5fba8be..ad7544e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2002-09-29 David Gravereaux <davygrvy@pobox.com>
+ * win/tclAppInit.c: Added proper exiting conditions using Win32
+ console signals. This handles the existing lack of a Ctrl+C exit
+ to call exit handlers when built for thread support. Also, properly
+ handles exits from other conditions such as CTRL_CLOSE_EVENT,
+ CTRL_LOGOFF_EVENT, and CTRL_SHUTDOWN_EVENT signals. In all cases,
+ exit handlers will be called. [Bug 219355]
+
* win/makefile.vc: Added missing tclThreadAlloc.c to the build
rules and defines USE_THREAD_ALLOC when TCL_THREADS is defined
to get the new behavior by default.