*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Sat, 09 Dec 1995 12:24:19 +0100
changeset 711 b535f22402a1
parent 710 10d86ca4c4a6
child 712 40906c842cd2
*** empty log message ***
ExtStream.st
ExternalStream.st
--- a/ExtStream.st	Fri Dec 08 12:09:33 1995 +0100
+++ b/ExtStream.st	Sat Dec 09 12:24:19 1995 +0100
@@ -177,7 +177,7 @@
 !
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ExtStream.st,v 1.76 1995-12-07 15:13:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/ExtStream.st,v 1.77 1995-12-09 11:24:19 cg Exp $'
 ! !
 
 !ExternalStream class methodsFor:'initialization'!
@@ -2469,12 +2469,12 @@
 	lastErrorNumber notNil ifTrue:[^ self readError].
 	outOfMemory == true ifTrue:[
 	    "
-	     memory allocation failed.
-	     When we arrive here, there was no (unix) memory available for the
+	     buffer memory allocation failed.
+	     When we arrive here, there was no memory available for the
 	     chunk. (seems to be too big of a chunk ...)
 	     Bad luck - you should increase the ulimit and/or swap space on your machine.
 	    "
-	    ^ ObjectMemory mallocFailureSignal raise.
+	    ^ ObjectMemory allocationFailureSignal raise.
 	]
     ].
     ^ retVal
--- a/ExternalStream.st	Fri Dec 08 12:09:33 1995 +0100
+++ b/ExternalStream.st	Sat Dec 09 12:24:19 1995 +0100
@@ -177,7 +177,7 @@
 !
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.76 1995-12-07 15:13:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.77 1995-12-09 11:24:19 cg Exp $'
 ! !
 
 !ExternalStream class methodsFor:'initialization'!
@@ -2469,12 +2469,12 @@
 	lastErrorNumber notNil ifTrue:[^ self readError].
 	outOfMemory == true ifTrue:[
 	    "
-	     memory allocation failed.
-	     When we arrive here, there was no (unix) memory available for the
+	     buffer memory allocation failed.
+	     When we arrive here, there was no memory available for the
 	     chunk. (seems to be too big of a chunk ...)
 	     Bad luck - you should increase the ulimit and/or swap space on your machine.
 	    "
-	    ^ ObjectMemory mallocFailureSignal raise.
+	    ^ ObjectMemory allocationFailureSignal raise.
 	]
     ].
     ^ retVal