diff options
author | hobbs <hobbs> | 2002-02-26 20:06:34 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-02-26 20:06:34 (GMT) |
commit | 3fb78e161b24938529abdfb46c439da4fca71aab (patch) | |
tree | 1200a9981f1a319d45186d9a2421c8bba2a44e4f /ChangeLog | |
parent | 715f64dcd530ec9d25427311edbd638c3c3092cb (diff) | |
download | tcl-3fb78e161b24938529abdfb46c439da4fca71aab.zip tcl-3fb78e161b24938529abdfb46c439da4fca71aab.tar.gz tcl-3fb78e161b24938529abdfb46c439da4fca71aab.tar.bz2 |
see ChangeLog
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -1,3 +1,12 @@ +2002-02-26 Jeff Hobbs <jeffh@ActiveState.com> + + * unix/configure: + * unix/tcl.m4 (SC_SERIAL_PORT): added sys/modem.h check and defined + _XOPEN_SOURCE_EXTENDED for HP-11 to get updated header decls. + + * unix/tclUnixChan.c: added Unix implementation of TIP #35, serial + port support. [Patch #438509] (schroedter) + 2002-02-26 Miguel Sofer <msofer@users.sourceforge.net> * generic/tclCmpCmds.c: (bugfix to the bugfix, hopefully the last) @@ -11,6 +20,24 @@ option "-error". Essentially ignores the option, always returning an empty string. +2002-02-25 Jeff Hobbs <jeffh@ActiveState.com> + + * doc/Alloc.3: + * doc/LinkVar.3: + * doc/ObjectType.3: + * doc/PkgRequire.3: + * doc/Preserve.3: + * doc/TCL_MEM_DEBUG.3: Updated documentation to describe the ckalloc, + ckfree, ckrealloc, attemptckalloc, and attemptckrealloc macros, and + to accurately describe when and how they are used. [Bug #497459] (dgp) + + * generic/tclHash.c (AllocArrayEntry, AllocStringEntry): + Before invoking ckalloc when creating a Tcl_HashEntry, + check that the amount of memory being allocated is + at least as large as sizeof(Tcl_HashEntry). The previous + code was allocating memory regions that were one + or two bytes short. [Bug #521950] (dejong) + 2002-02-25 Miguel Sofer <msofer@users.sourceforge.net> * generic/tclBasic.c (Tcl_EvalEx): avoiding a buffer overrun @@ -1154,6 +1181,22 @@ 2002-01-04 Don Porter <dgp@users.sourceforge.net> + * doc/Alloc.3: + * doc/Concat.3: + * doc/CrtMathFnc.3: + * doc/Hash.3: + * doc/Interp.3: + * doc/LinkVar.3: + * doc/ObjectType.3: + * doc/PkgRequire.3: + * doc/Preserve.3: + * doc/SetResult.3: + * doc/SplitList.3: + * doc/SplitPath.3: + * doc/TCL_MEM_DEBUG.3: Updated documentation to describe the ckalloc, + ckfree, ckrealloc, attemptckalloc, and attemptckrealloc macros, and + to accurately describe when and how they are used. [Bug 497459] + * generic/tclThreadJoin.c (TclRememberJoinableThread,TclJoinThread): Replaced Tcl_Alloc and Tcl_Free calls with ckalloc and ckfree so that memory debugging is supported. |