diff options
author | davygrvy <davygrvy@pobox.com> | 2002-09-30 00:08:01 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2002-09-30 00:08:01 (GMT) |
commit | 6067cbda26bb2ab8ba3a478df836c0fd310f25f9 (patch) | |
tree | b91e3ef4f4219d0c5978529e49cc5ba69e0f1eb0 /ChangeLog | |
parent | 29783f18958d2188696539256bf9abe426cdef51 (diff) | |
download | tcl-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-- | ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |