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 | 162598c5629415b8c78b2a14f171e55644e29c5d (patch) | |
tree | 3d9bf2760c3cffdf34ac6a2a610549f83ba708e3 /unix | |
parent | 19c2d13dd6b8e7bfb1e3c9d765d7294e8520393a (diff) | |
download | tcl-162598c5629415b8c78b2a14f171e55644e29c5d.zip tcl-162598c5629415b8c78b2a14f171e55644e29c5d.tar.gz tcl-162598c5629415b8c78b2a14f171e55644e29c5d.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')
-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. */ |