raise new mallocFailureSignal when running out of buffer memory
authorClaus Gittinger <cg@exept.de>
Tue, 31 Oct 1995 18:19:11 +0100
changeset 466 6e88139088a1
parent 465 fdc81f5887a1
child 467 8f5d7d58ceef
raise new mallocFailureSignal when running out of buffer memory
ExtStream.st
ExternalStream.st
--- a/ExtStream.st	Tue Oct 31 18:18:26 1995 +0100
+++ b/ExtStream.st	Tue Oct 31 18:19:11 1995 +0100
@@ -24,7 +24,7 @@
 COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Attic/ExtStream.st,v 1.58 1995-10-28 20:04:22 stefan Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/ExtStream.st,v 1.59 1995-10-31 17:19:11 cg Exp $
 '!
 
 !ExternalStream primitiveDefinitions!
@@ -151,7 +151,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Attic/ExtStream.st,v 1.58 1995-10-28 20:04:22 stefan Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/ExtStream.st,v 1.59 1995-10-31 17:19:11 cg Exp $
 "
 !
 
@@ -3510,9 +3510,9 @@
 	     memory allocation failed.
 	     When we arrive here, there was no (unix) memory available for the
 	     chunk. (seems to be too big of a chunk ...)
-	     Bad luck - you should increase the swap space on your machine.
+	     Bad luck - you should increase the ulimit and/or swap space on your machine.
 	    "
-	    ^ ObjectMemory allocationFailureSignal raise.
+	    ^ ObjectMemory mallocFailureSignal raise.
 	]
     ].
     ^ retVal
--- a/ExternalStream.st	Tue Oct 31 18:18:26 1995 +0100
+++ b/ExternalStream.st	Tue Oct 31 18:19:11 1995 +0100
@@ -24,7 +24,7 @@
 COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.58 1995-10-28 20:04:22 stefan Exp $
+$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.59 1995-10-31 17:19:11 cg Exp $
 '!
 
 !ExternalStream primitiveDefinitions!
@@ -151,7 +151,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.58 1995-10-28 20:04:22 stefan Exp $
+$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.59 1995-10-31 17:19:11 cg Exp $
 "
 !
 
@@ -3510,9 +3510,9 @@
 	     memory allocation failed.
 	     When we arrive here, there was no (unix) memory available for the
 	     chunk. (seems to be too big of a chunk ...)
-	     Bad luck - you should increase the swap space on your machine.
+	     Bad luck - you should increase the ulimit and/or swap space on your machine.
 	    "
-	    ^ ObjectMemory allocationFailureSignal raise.
+	    ^ ObjectMemory mallocFailureSignal raise.
 	]
     ].
     ^ retVal