diff options
author | dkf <dkf@noemail.net> | 2010-03-20 15:39:46 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2010-03-20 15:39:46 (GMT) |
commit | fd57d2c61d1a5e755355918ceddbbadcafc9d5db (patch) | |
tree | 916de8cf08cd2e2b07d6c7faf71f6d89064d6233 /ChangeLog | |
parent | 4adf9a350a2a2ee4101dd9447335b799e93220dc (diff) | |
download | tcl-fd57d2c61d1a5e755355918ceddbbadcafc9d5db.zip tcl-fd57d2c61d1a5e755355918ceddbbadcafc9d5db.tar.gz tcl-fd57d2c61d1a5e755355918ceddbbadcafc9d5db.tar.bz2 |
Allow [fcopy] to move more than 2GB per call. Frederic Bonnet identified issue.
FossilOrigin-Name: a2e969549f11650b54c316e8525b5dfafa3ce879
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -1,8 +1,18 @@ +2010-03-20 Donal K. Fellows <dkf@users.sf.net> + + * generic/tclIOCmd.c (Tcl_FcopyObjCmd): Lift the restriction + * generic/tclIO.c (TclCopyChannel, CopyData): on the [fcopy] command + * generic/tclIO.h (CopyState): that forced it to only + copy up to 2GB per script-level callback. Now it is anything that can + fit in a (signed) 64-bit integer. Problem identified by Frederic + Bonnet on comp.lang.tcl. Note that individual low-level reads and + writes are still smaller as the optimal buffer size is smaller. + 2010-03-20 Jan Nijtmans <nijtmans@users.sf.net> - * win/stub16.c Don't hide that we use the ASCII API here. + * win/stub16.c: Don't hide that we use the ASCII API here. (does someone still use that?) - * win/tclWinPipe.c 2 unnecessary type casts. + * win/tclWinPipe.c: 2 unnecessary type casts. 2010-03-19 Donal K. Fellows <dkf@users.sf.net> |