summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-09-03 08:07:07 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-09-03 08:07:07 (GMT)
commitbf275faafb5e7f06980740056beb289feda2af67 (patch)
treee42212db43b06b0e1a7a7b8d35abe57d8bae0822 /ChangeLog
parent26c688888436fd83e093f6bdb0f200234902d0ee (diff)
downloadtcl-bf275faafb5e7f06980740056beb289feda2af67.zip
tcl-bf275faafb5e7f06980740056beb289feda2af67.tar.gz
tcl-bf275faafb5e7f06980740056beb289feda2af67.tar.bz2
Added suggestions for how to handle the multithreaded case. [Bug 2844962]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog40
1 files changed, 22 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index 85fcec9..c913e45 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,15 @@
+2009-09-03 Donal K. Fellows <dkf@users.sf.net>
+
+ * doc/LinkVar.3: [Bug 2844962]: Added documentation of issues relating
+ to use of this API in a multi-threaded environment.
+
2009-09-01 Andreas Kupries <andreask@activestate.com>
* generic/tclIORTrans.c (ReflectInput): Remove error response to
- 0-result from method 'limit?' of transformations. Return the
- number of copied bytes instead, which is possibly nothing. The
- latter then triggers EOF handling in the higher layers, making the
- 0-result of limit? the way to inject artificial EOF's into the
- data stream.
+ 0-result from method 'limit?' of transformations. Return the number of
+ copied bytes instead, which is possibly nothing. The latter then
+ triggers EOF handling in the higher layers, making the 0-result of
+ limit? the way to inject artificial EOF's into the data stream.
2009-09-01 Don Porter <dgp@users.sourceforge.net>
@@ -16,32 +20,32 @@
2009-08-27 Don Porter <dgp@users.sourceforge.net>
- * generic/tclStringObj.c: A few more string overflow cases in
- [format]. [Bug 2845535]
+ * generic/tclStringObj.c: [Bug 2845535]: A few more string
+ overflow cases in [format].
2009-08-25 Andreas Kupries <andreask@activestate.com>
- * generic/tclBasic.c (Tcl_CreateInterp, Tcl_EvalTokensStandard,
- Tcl_EvalEx, TclEvalEx, TclAdvanceContinuations, TclNREvalObjEx):
+ * generic/tclBasic.c (Tcl_CreateInterp, Tcl_EvalTokensStandard)
+ (Tcl_EvalEx, TclEvalEx, TclAdvanceContinuations, TclNREvalObjEx):
* generic/tclCmdMZ.c (Tcl_SwitchObjCmd, TclListLines):
* generic/tclCompCmds.c (*):
- * generic/tclCompile.c (TclSetByteCodeFromAny, TclInitCompileEnv,
- TclFreeCompileEnv, TclCompileScript, TclCompileTokens):
+ * generic/tclCompile.c (TclSetByteCodeFromAny, TclInitCompileEnv)
+ (TclFreeCompileEnv, TclCompileScript, TclCompileTokens):
* generic/tclCompile.h (CompileEnv):
* generic/tclInt.h (ContLineLoc, Interp):
- * generic/tclObj.c (ThreadSpecificData, ContLineLocFree,
- TclThreadFinalizeObjects, TclInitObjSubsystem,
- TclContinuationsEnter, TclContinuationsEnterDerived,
- TclContinuationsCopy, TclContinuationsGet, TclFreeObj):
+ * generic/tclObj.c (ThreadSpecificData, ContLineLocFree)
+ (TclThreadFinalizeObjects, TclInitObjSubsystem, TclContinuationsEnter,
+ (TclContinuationsEnterDerived, TclContinuationsCopy, TclFreeObj)
+ (TclContinuationsGet):
* generic/tclParse.c (TclSubstTokens, Tcl_SubstObj):
* generic/tclProc.c (TclCreateProc):
* generic/tclVar.c (TclPtrSetVar):
* tests/info.test (info-30.0-24):
Extended the parser, compiler, and execution engine with code and
- attendant data structures tracking the position of continuation
- lines which are not visible in the resulting script Tcl_Obj*'s, to
- properly account for them while counting lines for #280.
+ attendant data structures tracking the position of continuation lines
+ which are not visible in the resulting script Tcl_Obj*'s, to properly
+ account for them while counting lines for #280.
2009-08-24 Daniel Steffen <das@users.sourceforge.net>