ExternalStream.st
changeset 9002 d50165ce5cba
parent 8966 0b299dd8759c
child 9023 7919c66b8fb0
--- a/ExternalStream.st	Mon Nov 28 22:21:36 2005 +0100
+++ b/ExternalStream.st	Mon Nov 28 22:23:08 2005 +0100
@@ -2871,15 +2871,11 @@
 
     |bufferSize|
 
-    "the sendfile() system call currently (2004-05-07) handles only descriptors that
-     support mmap-like operations as from-fd.
-     Therefore, this method is redefined in fileStream to optimize this case."
-
     OperatingSystem isMSDOSlike ifTrue:[
-	"/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
-	bufferSize := 1 * 1024.
+        "/ mhmh - NT hangs, when copying bigger blocks to a network drive - why ?
+        bufferSize := 1 * 1024.
     ] ifFalse:[
-	bufferSize := 8 * 1024.
+        bufferSize := 8 * 1024.
     ].
 
     ^ self copyToEndInto:outStream bufferSize:bufferSize
@@ -5938,7 +5934,7 @@
 !ExternalStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.293 2005-10-26 10:32:48 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.294 2005-11-28 21:23:08 stefan Exp $'
 ! !
 
 ExternalStream initialize!