summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* TIP #230 IMPLEMENTATIONandreas_kupries2008-06-0611-12/+4855
| | | | | | | | | | | | | | | | | | | * generic/tclIOCmd.c: Integration of transform commands into 'chan' ensemble. * generic/tclInt.h: Definitions of the transform commands. * generic/tclIORTrans.c: Implementation of the reflection transforms. * tests/chan.test: Tests updated for new sub-commands of 'chan'. * tests/ioCmd.test: Tests updated for new sub-commands of 'chan'. * tests/ioTrans.test: Whole new set of tests for the reflection transform. * unix/Makefile.in: Integration of new files into build rules. * win/Makefile.in: Integration of new files into build rules. * win/makefile.vc: Integration of new files into build rules. NOTE: The file 'tclIORTrans.c' has a lot of code in common with the file 'tclIORChan.c', as that made it much easier to develop the reference implementation as a separate module. Now that the transforms have been committed the one thing left to do is to go over both modules and see which of the common parts we can factor out and share.
* fix warnings, remove unused debug code that causes build failuredas2008-06-051-24/+10
|
* TIP #317 implementationpatthoyts2008-06-033-24/+879
|
* * generic/tclOO.c (ReleaseClassContents): Fix the one remainingKevin B Kenny2008-06-022-1/+13
| | | | | | | valgrind complaint about oo.test, caused by failing to protect the Object as well as the Class corresponding to a subclass being deleted and hence getting a freed-memory read when attempting to delete the class command. [Bug 1981001]
* Complete fix of [Bug 1981001]dkf2008-06-012-2/+10
|
* * generic/tclOOMethod.c: Fix a bug where the refcount of a methodKevin B Kenny2008-06-012-2/+7
| | | | | | was reset if the method was redefined while there was an active invocation. [Bug #1981001]
* Add tclOO genstubs to Windows makefilesJoe Mistachkin2008-06-013-6/+15
|
* * generic/tclDictObj.c: Added missing initializers to the ensembleKevin B Kenny2008-06-012-2/+7
| | | | | | map to silence a compiler warning. Thanks to George Peter Staplin for the report.
* * generic/tclOODecls.h: Added the swizzling of DLLEXPORT andKevin B Kenny2008-06-013-2/+59
| | | | * generic/tclOOIntDecls.h: DLLIMPORT needed to make EXTERN work.
* More patches to make stub generation work.dkf2008-06-015-109/+224
|
* typo, skip crashing http.test for gcovdas2008-06-011-14/+14
|
* Fix generation of stubs for the OO API.dkf2008-06-013-50/+54
|
* * generic/tclOOStubLib.c: ensure use of tcl stubs; include indas2008-05-319-53/+87
| | | | | | | | | | | | | | * unix/Makefile.in: stub lib; disable broken tclOO genstubs * generic/tclOO.c: make tclOO stubs tables 'static const' * generic/tclOODecls.h: and stub table pointers MODULE_SCOPE * generic/tclOOIntDecls.h: (change generated files manually * generic/tclOOStubInit.c: pending genstubs support for tclOO). * generic/tclOOStubLib.c: * generic/tclOO.c: fix warnings for 'int<->ptr conversion' * generic/tclOOCall.c: and 'signed vs unsigned comparison'. * generic/tclOOMethod.c:
* * tests/msgcat.test: fix for ::tcl::mac::locale with @modifier.das2008-05-311-2/+3
|
* * tools/tsdPerf.tcl: use [info sharedlibextension]das2008-05-311-2/+2
|
* * unix/tclConfig.h.in: autoheader-2.59das2008-05-311-5/+1
|
* * macosx/Tcl.xcodeproj/project.pbxproj: add new tclOO files; add debugdas2008-05-312-9/+200
| | | | | | * macosx/README: targets with corefoundation disabled and with gcov; update to Xcode 3.1.
* Plug method-related memory leaks pointed out by Miguel.dkf2008-05-314-15/+40
|
* Make things build (cleanly) on Win32. Thanks to Joe Mistachkin. [Patch 1980861]dkf2008-05-316-13/+45
|
* Implementation of TIP #257. Incomplete due to missing Win build support.dkf2008-05-3131-22/+13866
|
* Small clarifications that code a bit nicer to read.dkf2008-05-308-222/+206
|
* Fixed line endingspatthoyts2008-05-271-18/+18
|
* (io-53.9): need to close chan before removing filehobbs2008-05-262-1/+6
|
* Missed one!dkf2008-05-262-11/+3
|
* Remove obsolete winhelp targets. They weren't supported and didn't work.dkf2008-05-263-105/+16
|
* Oops. Undo commit of the local tweaks.andreas_kupries2008-05-234-23/+9
|
* * win/tclWinChan.c (FileWideSeekProc): Accepted a patch byandreas_kupries2008-05-239-30/+59
| | | | | | | | | | | | Alexandre Ferrieux <ferrieux@users.sourceforge.net> to fix the [Bug 1965787]. 'tell' now works for locations > 2 GB as well instead of going negative. * generic/tclIO.c (Tcl_SetChannelBufferSize): Accepted a patch by * tests/io.test: Alexandre Ferrieux <ferrieux@users.sourceforge.net> * tests/chanio.test: to fix the [Bug 1969953]. Buffersize outside of the supported range are now clipped to nearest boundary instead of ignored.
* * generic/tclNamesp.c (Tcl_LogCommandInfo): Restored ability todgp2008-05-222-1/+10
| | | | | handle the argument value length = -1. Thanks to Chris Darroch for discovering the bug and providing the fix. [Bug 1968245].
* * generic/tclParse.c (ParseComment): The new TclParseAllWhiteSpace()dgp2008-05-213-5/+20
| | | | | | | * tests/parse.test (parse-15.60): routine has no mechanism to return the "incomplete" status of "\\\n" so calling this routine anywhere that can be reached within a Tcl_ParseCommand() call is a mistake. In particular, ParseComment() must not use it. [Bug 1968882].
* Correct logic for handling error cases when setting the namespace unknown ↵dkf2008-05-203-52/+76
| | | | handler.
* * generic/tclCompile.c: fix crash with tcl_traceExec. Found andMiguel Sofer2008-05-162-2/+7
| | | | fixed by Alexander Pasadyn [Bug 1964803].
* We should use the thread allocator for threaded builds. Added 'tclalloc' ↵patthoyts2008-05-154-8/+19
| | | | option to disable.
* * tools/tsdPerf.c A loadable Tcl extension for testing TSDgeorgeps2008-05-093-0/+93
| | | | | | | performance. * tools/tsdPerf.tcl A simplistic tool that uses the thread extension and tsdPerf.so to get some performance metrics by, simulating, simple TSD contention.
* * generic/tcl.h: Make Tcl_ThreadDataKey a void *.georgeps2008-05-097-460/+284
| | | | | | | | | | | | | | | | | * generic/tclInt.h: Change around some function names and add some new per-platform declarations for thread-specific data functions. * generic/tclThread.c: Make use of of the new function names that no longer have a Tclp prefix. * generic/tclThreadStorage.c: Replace the core thread-specific data (TSD) mechanism with an array offset solution that eliminates the hash tables, and only uses one slot of native TSD. Many thanks to Kevin B. Kenny for his help with this. * unix/tclUnixThrd.c: Add platform-specific TSD functions for use by tclThreadStorage.c. * win/tclWinThrd.c: Add platform-specific TSD functions for use by tclThreadStorage.c.
* * tests/dict.test (dict-19.2): Corrected a bug whereKevin B Kenny2008-05-091-1/+1
| | | | | | the test was changed to use [apply] instead of a temporary proc, but the cleanup script still attempted to delete the temporary proc.
* * Makefile:Kevin B Kenny2008-05-092-2/+9
| | | | | | | | | | | | | | | | | | Restored compilability of 'stitcher.exe' on vc2k5. * cameraparams.h: * compressor.cpp: * imageDirectory.h: * stitchEngine.h: * stitcher.cpp: Added computation of Brenner gradient and median of several images to allow for computation of white balance on the fly. Replaced a lot of 'unsigned' quantities with 'int' to avoid surprises on overflow. Turned the images to run in X-major order again. This requires a 64-bit machine for the larger images, but is considerably more cache-friendly, and reduces stitch times of the smaller images by nearly half.
* Cleaning updkf2008-05-071-380/+369
|
* Simplify testdkf2008-05-071-8/+3
|
* Return type of Tcl_AppendPrintfToObj is void. (spotted by Torsten Berg)patthoyts2008-05-071-2/+2
|
* Detect problem case and prove that it's fixed.dkf2008-05-071-1/+9
|
* Fix off-by-one error that caused crashes. D'oh!dkf2008-05-072-2/+9
|
* fix Makefile dependencydas2008-05-061-2/+2
|
* CONST -> constnijtmans2008-05-042-3/+3
|
* use Tcl_Panic() instead of panic()das2008-05-031-3/+3
|
* Converted the [binary] command into an ensemble.patthoyts2008-05-025-160/+244
|
* Reverted dkf's accidental commit of the TIP 316 APIs as part of a code cleanuppatthoyts2008-05-022-108/+5
|
* Record tclvfs basepatthoyts2008-05-021-1/+3
|
* More elimination of pre-C89-isms.dkf2008-05-0213-574/+653
|
* Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-275-27/+27
|
* Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-2775-1308/+1330
|