|
From: Kevin B K. <ke...@us...> - 2008-05-09 03:44:16
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25185 Modified Files: ChangeLog Log Message: * Makefile: 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. |
|
From: Kevin B K. <ke...@us...> - 2008-05-09 03:51:27
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28528 Modified Files: ChangeLog Log Message: * tests/dict.test (dict-19.2): Corrected a bug where the test was changed to use [apply] instead of a temporary proc, but the cleanup script still attempted to delete the temporary proc. |
|
From: George P. S. <geo...@us...> - 2008-05-09 04:58:46
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv24934 Modified Files: ChangeLog Log Message: * generic/tcl.h: Make Tcl_ThreadDataKey a void *. * 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. |
|
From: George P. S. <geo...@us...> - 2008-05-09 05:07:35
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28705 Modified Files: ChangeLog Log Message: * tools/tsdPerf.c A loadable Tcl extension for testing TSD 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. |
|
From: Don P. <dg...@us...> - 2008-05-11 04:22:27
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv26164 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
|
From: Pat T. <pat...@us...> - 2008-05-15 00:04:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv29828 Modified Files: ChangeLog Log Message: We should use the thread allocator for threaded builds. Added 'tclalloc' option to disable. |
|
From: miguel s. <ms...@us...> - 2008-05-16 14:13:30
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv21493 Modified Files: ChangeLog Log Message: * generic/tclCompile.c: fix crash with tcl_traceExec. Found and fixed by Alexander Pasadyn [Bug 1964803]. |
|
From: miguel s. <ms...@us...> - 2008-05-16 14:27:30
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv27422 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * generic/tclCompile.c: fix crash with tcl_traceExec. Found and fixed by Alexander Pasadyn [Bug 1964803]. |
|
From: Don P. <dg...@us...> - 2008-05-16 15:05:31
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11337 Modified Files: Tag: dgp-refactor ChangeLog Log Message: merge updates from HEAD |
|
From: Donal K. F. <dk...@us...> - 2008-05-20 22:22:09
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv21588 Modified Files: ChangeLog Log Message: Correct logic for handling error cases when setting the namespace unknown handler. |
|
From: Donal K. F. <dk...@us...> - 2008-05-21 13:26:08
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv8707 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: Backport of fixes to Tcl_SetNamespaceUnknownHandler |
|
From: Don P. <dg...@us...> - 2008-05-21 20:28:11
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv24667 Modified Files: ChangeLog Log Message: * generic/tclParse.c (ParseComment): The new TclParseAllWhiteSpace() * 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]. |
|
From: Don P. <dg...@us...> - 2008-05-21 20:38:07
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28802 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * generic/tclParse.c (ParseComment): The new TclParseAllWhiteSpace() * 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]. |
|
From: Don P. <dg...@us...> - 2008-05-22 15:22:00
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv14595 Modified Files: ChangeLog Log Message: * generic/tclNamesp.c (Tcl_LogCommandInfo): Restored ability to handle the argument value length = -1. Thanks to Chris Darroch for discovering the bug and providing the fix. [Bug 1968245]. |
|
From: Don P. <dg...@us...> - 2008-05-22 15:25:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv16297 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * generic/tclNamesp.c (Tcl_LogCommandInfo): Restored ability to handle the argument value length = -1. Thanks to Chris Darroch for discovering the bug and providing the fix. [Bug 1968245]. |
|
From: Andreas K. <and...@us...> - 2008-05-23 21:00:42
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv7760 Modified Files: ChangeLog Log Message: * win/tclWinChan.c (FileWideSeekProc): Accepted a patch by Alexandre Ferrieux <fer...@us...> 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 <fer...@us...> * tests/chanio.test: to fix the [Bug 1969953]. Buffersize outside of the supported range are now clipped to nearest boundary instead of ignored. |
|
From: Andreas K. <and...@us...> - 2008-05-23 21:10:44
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11966 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: * win/tclWinChan.c (FileWideSeekProc): Accepted a patch by Alexandre Ferrieux <fer...@us...> 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 <fer...@us...> * tests/chanio.test: to fix the [Bug 1969953]. Buffersize outside of the supported range are now clipped to nearest boundary instead of ignored. |
|
From: Andreas K. <and...@us...> - 2008-05-23 21:12:06
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12697 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * win/tclWinChan.c (FileWideSeekProc): Accepted a patch by Alexandre Ferrieux <fer...@us...> 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 <fer...@us...> to fix the [Bug 1969953]. Buffersize outside of the supported range are now clipped to nearest boundary instead of ignored. |
|
From: Donal K. F. <dk...@us...> - 2008-05-26 10:01:54
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv567 Modified Files: ChangeLog Log Message: Remove obsolete winhelp targets. They weren't supported and didn't work. |
|
From: Donal K. F. <dk...@us...> - 2008-05-26 10:04:45
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv1837 Modified Files: ChangeLog Log Message: Missed one! |
|
From: Jeffrey H. <ho...@us...> - 2008-05-26 18:26:10
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv9607 Modified Files: Tag: core-8-4-branch ChangeLog Log Message: * tests/io.test (io-53.9): need to close chan before removing file. |
|
From: Jeffrey H. <ho...@us...> - 2008-05-26 18:27:47
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10072 Modified Files: Tag: core-8-5-branch ChangeLog Log Message: (io-53.9): need to close chan before removing file |
|
From: Jeffrey H. <ho...@us...> - 2008-05-26 18:28:40
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10501 Modified Files: ChangeLog Log Message: (io-53.9): need to close chan before removing file |
|
From: Donal K. F. <dk...@us...> - 2008-05-31 11:41:59
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv2134 Modified Files: ChangeLog Log Message: Implementation of TIP #257. Incomplete due to missing Win build support. |
|
From: Donal K. F. <dk...@us...> - 2008-05-31 19:55:58
|
Update of /cvsroot/tcl/tcl In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv8627 Modified Files: ChangeLog Log Message: Make things build (cleanly) on Win32. Thanks to Joe Mistachkin. [Patch 1980861] |