Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Killed c99/c++ comments left in by the IO patch. | andreas_kupries | 2009-12-09 | 1 | -6/+1 |
| | |||||
* | * generic/tclIO.c: [Bug 2901998]: Applied Alexandre Ferrieux's | andreas_kupries | 2009-12-09 | 1 | -5/+48 |
| | | | | | | patch fixing the inconsistent buffered I/O. Tcl's I/O now flushes buffered output before reading, discards buffered input before writing, etc. | ||||
* | remove accidentally committed C++ style comments | Miguel Sofer | 2009-12-09 | 1 | -3/+1 |
| | |||||
* | * generic/tclBasic.c: Insure correct lifetime of varFrame's | Miguel Sofer | 2009-12-09 | 2 | -19/+30 |
| | | | | | | (objc,objv)for coroutines. * generic/tclExecute.c: Code regrouping | ||||
* | Add missing Tcl_SetErrorCode calls. | dkf | 2009-12-09 | 1 | -24/+35 |
| | |||||
* | * generic/tclExecute.c (TclStackFree): Improved panic msg | Miguel Sofer | 2009-12-09 | 1 | -2/+3 |
| | |||||
* | added comment confessing my puzzlement | Miguel Sofer | 2009-12-08 | 1 | -1/+8 |
| | |||||
* | minor cleanup | Miguel Sofer | 2009-12-08 | 1 | -10/+7 |
| | |||||
* | baby steps towards nre-enabling coroutine first run | Miguel Sofer | 2009-12-08 | 2 | -32/+22 |
| | |||||
* | * generic/tclBasic.c: Partial nre-enabling of coroutines. | Miguel Sofer | 2009-12-08 | 3 | -66/+99 |
| | | | | | | * generic/tclExecute.c: The initial call still requires its * generic/tclInt.h: own instance of tebc, but on resume coros can execute in the caller's tebc. | ||||
* | * generic/tclExecute.c (TEBC): silence warning about pcAdjustment | Miguel Sofer | 2009-12-08 | 1 | -1/+3 |
| | |||||
* | Small corrections (enforcing ANSI style declarations, etc.) | dkf | 2009-12-08 | 1 | -133/+145 |
| | |||||
* | Reduce size of TEBC activation record a bit. | dkf | 2009-12-08 | 1 | -366/+389 |
| | |||||
* | * generic/tclExecute.c (TEBC): Grouping "slow" variables into | Miguel Sofer | 2009-12-08 | 1 | -319/+327 |
| | | | | | structs, to reduce register pressure and help the compiler with variable allocation. | ||||
* | * generic/tclExecute.c: Start cleaning the TEBC stables | Miguel Sofer | 2009-12-08 | 2 | -219/+162 |
| | | | | * generic/tclInt.h: | ||||
* | * generic/tclCmdIL.c: Fix of [Bug #2910094] by aku | Miguel Sofer | 2009-12-07 | 1 | -2/+2 |
| | | | | * tests/coroutine.test: | ||||
* | * generic/tclBasic.c: arrange for [tailcall] to be created with | Miguel Sofer | 2009-12-07 | 1 | -8/+2 |
| | | | | | the other builtins: was being created in a separate call, leftover from pre-tip days. | ||||
* | * generic/tclStrToD.c: Correct conditional compile directives to | dgp | 2009-12-07 | 1 | -4/+5 |
| | | | | | better detect the toolchain that needs extra work for proper underflow treatment instead of merely detecting the mips platform. [Bug 2902010]. | ||||
* | * generic/tclBasic.c: add ::tcl::unsupported::yieldTo | Miguel Sofer | 2009-12-07 | 2 | -6/+68 |
| | | | | * generic/tclInt.h: [Patch 2910056] | ||||
* | Plug memory leak. [Bug 2910044] | dkf | 2009-12-07 | 1 | -1/+9 |
| | |||||
* | missing declaration | Miguel Sofer | 2009-12-07 | 1 | -1/+2 |
| | |||||
* | factoring TclSpliceTailcall out of TclPopStackFrame | Miguel Sofer | 2009-12-06 | 4 | -48/+59 |
| | |||||
* | * generic/tclBasic.c: Small changes for clarity in tailcall | Miguel Sofer | 2009-12-06 | 2 | -17/+42 |
| | | | | * generic/tclExecute.c: and coroutine code. | ||||
* | * generic/tclBasic.c: Fixed things so that you can tailcall | Miguel Sofer | 2009-12-05 | 3 | -4/+28 |
| | | | | | | | | * generic/tclNamesp.c: properly out of a coroutine. * tests/tailcall.test: * generic/tclInterp.c: Fixed tailcalls for same-interp aliases (no test) | ||||
* | tcl.h Don't use EXPORT for Tcl_InitStubs | nijtmans | 2009-11-30 | 1 | -3/+3 |
| | | | | win/Makefile.in Better dependancies in case of static build. | ||||
* | Match the version-bump of TclOO. | dkf | 2009-11-27 | 1 | -2/+3 |
| | |||||
* | [Bug 2903811]: Remove unneeded restrictions on usefully calling the | dkf | 2009-11-27 | 1 | -8/+6 |
| | | | | oo::object->variable method. Leaving it hidden is enough. | ||||
* | fix warning on LP64 | das | 2009-11-26 | 1 | -1/+5 |
| | |||||
* | Ensure that destroying an object in a constructor doesn't crash. [Bug 2903011] | dkf | 2009-11-24 | 1 | -4/+44 |
| | |||||
* | #undef STATIC_BUILD in tclWin(Dde|Reg).c, in order to make | nijtmans | 2009-11-23 | 2 | -38/+33 |
| | | | | | | | | | | | sure that Xxxxx_Init is always exported even when Tcl is built static (otherwise we cannot create a DLL). tclThreadTest.c: Make all functions static, except TclThread_Init. fCmd.test Enable fCmd-30.1 when registry is available. tcl.m4 Fix ${SHLIB_LD_LIBS} definition, fix conflicts configure.in between static libraries and import library on windows. configure (regenerated) Makefile.in Simplifications related to tcl.m4 changes. | ||||
* | * generic/tclThreadTest.c (NewTestThread): [Bug 2901803] | Kevin B Kenny | 2009-11-23 | 1 | -2/+2 |
| | | | | | Further machinations to get NewTestThread actually to launch the thread, not just compile. | ||||
* | [Bug 2901803]: Fix silly error. | dkf | 2009-11-23 | 1 | -14/+16 |
| | |||||
* | Cast required when setting result using a const string. String is copied by ↵ | patthoyts | 2009-11-21 | 1 | -2/+2 |
| | | | | TCL_VOLATILE. | ||||
* | a bit of cleanup | dgp | 2009-11-20 | 1 | -1/+4 |
| | |||||
* | Updated freeIntRepProc routines so | nijtmans | 2009-11-19 | 1 | -2/+3 |
| | | | | | | | that they set the typePtr field to NULL so that the Tcl_Obj is not left in an inconsistent state. [Bug 2857044] | ||||
* | Test-case for fixed [Bug 2849797] | nijtmans | 2009-11-19 | 2 | -5/+2 |
| | | | | | | Fix safe-10.1 and safe-10.4 test cases, making the wrong assumption that Tcltest should be a static package. | ||||
* | Fix [Bug 2883850]: pkgIndex.tcl doesn't | nijtmans | 2009-11-18 | 5 | -27/+97 |
| | | | | get created with static Tcl build | ||||
* | Fix [Bug 2849797]: channel name inconsistencies as suggested by DKF | nijtmans | 2009-11-18 | 2 | -7/+13 |
| | | | | | | minor *** POTENTIAL INCOMPATIBILITY *** because Tcl_CreateChannel() and its derivatives, now sometimes ignore their "chanName" argument. | ||||
* | Eliminate unneccessary spaces | nijtmans | 2009-11-18 | 1 | -4/+4 |
| | |||||
* | Eliminate various gcc warnings (in -Wextra mode) | nijtmans | 2009-11-18 | 16 | -154/+158 |
| | |||||
* | Use proper command creation routine. | dgp | 2009-11-16 | 1 | -2/+2 |
| | |||||
* | Revert mistaken commit | dgp | 2009-11-16 | 5 | -107/+7 |
| | |||||
* | (forward port) Fix [Bug 2891556] and improve test to detect similar ↵ | ferrieux | 2009-11-16 | 7 | -14/+175 |
| | | | | manifestations in the future. Add tcltest support for finalization. | ||||
* | * generic/tclIO.c (CopyData): [Bug 2895565]. Dropped bogosity | andreas_kupries | 2009-11-12 | 1 | -9/+12 |
| | | | | | | * tests/io.test: which used the number of _written_ bytes or character to update the counters for the read bytes/characters. New test io-53.11. This is a forward port from the 8.5 branch. | ||||
* | * generic/tclClock.c (TclClockInit): Do not create [clock] support | dgp | 2009-11-12 | 1 | -1/+10 |
| | | | | commands in safe interps. | ||||
* | Fix [Bug 2888099] (close discards ENOSPC error) by saving the errno | ferrieux | 2009-11-10 | 1 | -2/+17 |
| | | | | | from the first of two FlushChannel()s. Uneasy to test; might need specific channel drivers. Four-hands with aku. | ||||
* | * generic/tclBasic.c: Plug another leak in TCL_EVAL_DIRECT | andreas_kupries | 2009-11-10 | 1 | -9/+9 |
| | | | | | evaluation. Forward port from Tcl 8.5 branch, change by Don Porter. | ||||
* | * generic/tclObj.c: Plus memory leak in TclContinuationsEnter(). | andreas_kupries | 2009-11-10 | 1 | -1/+12 |
| | | | | | [Bug 2895323]. Forward port from Tcl 8.5 branch, change by Don Porter. | ||||
* | * generic/tclBasic.c (TclEvalObjEx): Moved the #280 decrement of | andreas_kupries | 2009-11-09 | 1 | -8/+7 |
| | | | | | | | refCount for the file path out of the branch after the whole conditional, closing a memory leak. Added clause on structure type to prevent seg.faulting. Forward port from valgrinding the Tcl 8.5 branch. | ||||
* | Some small bits of tidying up. | dkf | 2009-11-09 | 1 | -16/+14 |
| |