diff options
author | andreas_kupries <akupries@shaw.ca> | 2004-10-28 21:12:33 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2004-10-28 21:12:33 (GMT) |
commit | 0c45f847cdb07da65270f480ccf96da7464448e9 (patch) | |
tree | 3d9bf2760c3cffdf34ac6a2a610549f83ba708e3 /unix/tclUnixThrd.c | |
parent | 93db5dfcdf5fedb0552a7a20e13e9643ecbf564f (diff) | |
download | tcl-0c45f847cdb07da65270f480ccf96da7464448e9.zip tcl-0c45f847cdb07da65270f480ccf96da7464448e9.tar.gz tcl-0c45f847cdb07da65270f480ccf96da7464448e9.tar.bz2 |
* generic/tclAlloc.c: Fixed [Tcl SF Bug 1030548], a
* generic/tclThreadAlloc.c: threaded debug build on Windows
* win/tclWinThrd.c: now works again. Had to touch Unix
* unix/tclUnixThrd.c: as well. Basic patch by Kevin, with
modifications by myself.
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r-- | unix/tclUnixThrd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c index 738808a..00059df 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -883,7 +883,7 @@ TclpInetNtoa(struct in_addr addr) #endif } -#ifdef TCL_THREADS +#if defined(TCL_THREADS) && defined(USE_THREAD_ALLOC) && !defined(TCL_MEM_DEBUG) /* * Additions by AOL for specialized thread memory allocator. */ |