diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-16 12:11:14 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-11-16 12:11:14 +0000 |
commit | 210b36aa2e9e009554be8970c3315c2658c0384f (patch) | |
tree | 71bb13e291837569d86a3f2f5c17515ccc1b9610 /README.os390 | |
parent | d7ceb7fc1159206a67f149394fc7aa55f6b4f7dd (diff) | |
download | perl-210b36aa2e9e009554be8970c3315c2658c0384f.tar.gz |
[PATCH] Doc spellcheck + podcheck
From: Autrijus Tang <autrijus@egb.elixus.org>
Date: Thu, 15 Nov 2001 22:49:05 -0800
Message-Id: <20011116064905.GA44092@egb.elixus.org>
Subject: [PATCH] podcheck+spellcheck, the rest of the story
From: Autrijus Tang <autrijus@egb.elixus.org>
Date: Fri, 16 Nov 2001 00:42:20 -0800
Message-Id: <20011116084220.GA44295@egb.elixus.org>
Subject: Re: [PATCH] podcheck+spellcheck, the rest of the story
From: Nicholas Clark <nick@ccl4.org>
Date: Fri, 16 Nov 2001 10:32:01 +0000
Message-Id: <20011116103200.F62891@plum.flirble.org>
(Applied after suitable de-mangling.)
p4raw-id: //depot/perl@13041
Diffstat (limited to 'README.os390')
-rw-r--r-- | README.os390 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/README.os390 b/README.os390 index 578d5a3c7c..cc550f0701 100644 --- a/README.os390 +++ b/README.os390 @@ -253,16 +253,16 @@ Out of Memory! Recent perl test suite is quite memory hunrgy. In addition to the comments above on memory limitations it is also worth checking for _CEE_RUNOPTS in your environment. Perl now has (in miniperlmain.c) a C #pragma -to set CEE run options, but the enviroment variable wins. +to set CEE run options, but the environment variable wins. -The C code ask for: +The C code asks for: #pragma runopts(HEAP(2M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON)) The important parts of that are the second argument (the increment) to HEAP, and allowing the stack to be "Above the (16M) line". If the heap -increment is too small then when perl (for example loading unicode/Name.pl) trys -to create a "big" (400K+) string it cannot fit in a single segement +increment is too small then when perl (for example loading unicode/Name.pl) tries +to create a "big" (400K+) string it cannot fit in a single segment and you get "Out of Memory!" - even if there is still plenty of memory available. |