On Mon, 16 Jan 2012 08:40:41 -0600, Mark Zelden wrote:
>
>Or even if you are not using outtrap, what region size do you get when you
>logon to TSO (above the line)? If you aren't sure, the REXXSTOR exec from
>my web site or CBT file 434 can give you the answer.
>
Oooh! Neat! Thanks for this.
>How many variables are you using? Are you ever dropping them?
>
But beware; sometimes DROPping things can increase the storage in
use, as in:
142$ cat morestor
/* Rexx */ signal on novalue; /*
Doc: can DROP increase storage usage!?
*/
X. = 'Everything'
call REXXSTOR
do I = 1 to 10000
J = random( 99999 )
drop X.J; end
call REXXSTOR
And sometimes IBM expects things not to be reused. Long ago,
on CMS, and pre-HLASM, I reported to IBM that the assembler
leaked 132 bytes of storage on each invocation. No PTF. IBM's
recommendation: larger REGION; same recommendation I got
when I once reported 0C4 in some IBM code.
-- gil
----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN