summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Added a htmlhelp target to replace winhelppatthoyts2008-04-271-6/+58
|
* Also, panic early if we find out the wrong thread attemptingvasiljevic2008-04-272-2/+14
| | | | | to delete the async handler (common trap). As, only the one that created the handler is allowed to delete it.
* generic/tclAsync.c: Tcl_AsyncDelete(): panic if attemptvasiljevic2008-04-262-18/+32
| | | | | to locate handler token fails. Happens when some other thread attempts to delete somebody else's token.
* remove ioUtil.test, llvm-gcc fixdas2008-04-251-5/+2
|
* fix warningdas2008-04-251-2/+1
|
* define DLLEXPORT as __attribute__ ((visibility("default"))) for gcc >= 4.0.nijtmans2008-04-241-16/+17
| | | | | This allows extensions to be compiled with -fvisiblity=hidden and still all symbols decorated with EXPORT. See: <http://gcc.gnu.org/wiki/Visibility>
* * tests/ioCmd.test: Extended testsuite for reflected channelandreas_kupries2008-04-243-49/+523
| | | | | | | | | | implementation. Added test cases about how it handles if the rug is pulled out from under a channel (= killing threads, interpreters containing the tcl command for a channel, and channel sitting in a different interpreter/thread.) * generic/tclIORChan.c: Fixed the bugs exposed by the new testcases, redone most of the cleanup and exit handling.
* Assorted improvements to make better use of tcltest2dkf2008-04-236-385/+417
|
* * generic/tclIOUtil.c: Removed all code delimited bydgp2008-04-215-1361/+34
| | | | | | | | | * generic/tclTest.c: USE_OBSOLETE_FS_HOOKS, completing * tests/ioCmd.test: the deprecation path for these * tests/ioUtil.test (removed): obsolete interfaces. (Code was active in Tcl 8.4, present but enabled only by customized compile switch in Tcl 8.5, and now completely gone for Tcl 8.6). Also removed all tests relevant only to the removed interfaces.
* doc/Ensemble.3: Fix a typo: s/defiend/defined/georgeps2008-04-202-2/+8
| | | | Thanks to hat0 for spotting this.
* note that cygwin is not supportedmdejong2008-04-191-1/+4
|
* Fix typo spotted by Steve Havelkadkf2008-04-181-2/+2
|
* * generic/tclInt.h: make stubs tables 'static const' anddas2008-04-167-25/+39
| | | | | | | | * generic/tclStubInit.c: export only module-scope pointers to * generic/tclStubLib.c: the main stubs tables (for package * tools/genStubs.tcl: initialization). [Patch 1938497] * generic/tclBasic.c (Tcl_CreateInterp): * generic/tclTomMathInterface.c (TclTommath_Init):
* * generic/tclInt.h: revise Tcl_SetNotifier() to use adas2008-04-167-988/+1014
| | | | | | | | * generic/tclNotify.c: module-scope hooks table instead of * generic/tclStubInit.c: runtime stubs-table modification; * macosx/tclMacOSXNotify.c: ensure all hookable notifier functions * win/tclWinNotify.c: check for hooks; remove hook checks in * unix/tclUnixNotfy.c: notifier API callers. [Patch 1938497]
* * generic/tclIO.c (CopyData): Applied another patch by Alexandreandreas_kupries2008-04-154-8/+98
| | | | | | | * io.test (io-53.8a): Ferrieux <ferrieux@users.sourceforge.net>, * chanio.test (chan-io-53.8a): to shift EOF handling to the async part of the command if a callback is specified, should the channel be at EOF already when fcopy is called. Testcase by myself.
* sync with Tcl.xcodeprojdas2008-04-151-2/+15
|
* * unix/Makefile.in: adjust tclDTrace.h dependencies for removaldas2008-04-152-2/+8
| | | | of tclStubLib.o from TCL_OBJS. [Bug 1942795]
* * tests/clock.test (clock-33.5, clock-33.5a, clock-33.8, clock-33.8a):Kevin B Kenny2008-04-142-1/+12
| | | | | Added comments to the test that it can fail on a heavily loaded system.
* * unix/tclUnixTime.c (NativeGetTime): Removed obsolete use ofKevin B Kenny2008-04-142-3/+7
| | | | 'struct timezone' in the call to 'gettimeofday'. [Bug 1942197].
* fix one broken test, and restore unix line endingsdgp2008-04-111-439/+439
|
* * generic/tclIOCmd.c (Tcl_FcopyObjCmd): Keeping check for negativeandreas_kupries2008-04-105-26/+96
| | | | | | | | | | | | values, changed to not be an error, but behave like the special value -1 (copy all, default). * tests/iocmd.test (iocmd-15.{12,13}): Removed. * tests/io.test (io-52.5{,a,b}): Reverted last change, added * tests/chanio.test (chan-io-52.5{,a,b}): comment regarding the meaning of -1, added two more testcases for other negative values, and input wrapped to negative.
* Test improvements (tcltest2, clarify)dkf2008-04-105-1003/+1280
|
* Added 'make html' support for people on Windows, inspired by Pat Thoyts.dkf2008-04-092-77/+93
|
* * tests/chanio.test (chan-io-52.5): Removed '-size -1' from test,andreas_kupries2008-04-093-4/+10
| | | | | * tests/io.test (io-52.5): does not seem to have any bearing, and was an illegal value.
* * generic/tclIOCmd.c (Tcl_FcopyObjCmd): Added checking of -sizeandreas_kupries2008-04-093-2/+31
| | | | | | | | * tests/ioCmd.test (iocmd-15.{13,14}): value to reject negative values, and values overflowing 32-bit signed. [Bug 1557855]. Basic patch by Alexandre Ferrieux <ferrieux@users.sourceforge.net>, with modifications from me to separate overflow from true negative value. Extended testsuite.
* * tests/chanio.test (chan-io-53.8,53.9,53.10): fix typo & quoting fordas2008-04-083-18/+21
| | | | * tests/io.test (io-53.8,53.9,53.10): spaces in builddir path
* * generic/tclExecute.c: added comments to the alignment macrosMiguel Sofer2008-04-082-5/+23
| | | | used in GrowEvaluationStack() and friends.
* * generic/tclDecls.h: make genstubsdas2008-04-085-10/+10
| | | | | | | * generic/tclIntDecls.h: * generic/tclIntPlatDecls.h: * generic/tclPlatDecls.h: * generic/tclTomMathDecls.h:
* * tools/genStubs.tcl: revert erroneous 2008-04-02 change markingdas2008-04-082-18/+29
| | | | *StubsPtr as EXTERN instead of extern.
* * tests/io.test (io-53.10): Testcase for bi-directionaly fcopy.andreas_kupries2008-04-075-31/+191
| | | | | | | | * tests/chanio.test: * generic/tclIO.c: Additional changes to data structures for fcopy * generic/tclIO.h: and channels to perform proper cleanup in case of a channel having two background copy operations running as is now possible.
* Added forgotten reference to [Bug 1350564] in last entry.andreas_kupries2008-04-071-2/+3
|