Program Stack - ERRMSGR24,7 (AREV Specific)
At 25 FEB 1999 01:54:48PM Tom Horan wrote:
Is there a way to clear the program stack?
Were running into a problem and getting ERRMSGr27,4 which I understand is that more than 299 program are in memory. Is there a way to clear the program stack. I know if I go to the TCL and type reset it clears the program stack. Is there a way I can do this inside a program each time a screen is saved.
At 25 FEB 1999 04:55PM Steve Smith wrote:
Make your subroutines and functions expendable. There is a slight perfomance hit but memory saving. Instead of a structure where you get:
program a calls program b calls program c
replace it with
program d calls expendable program a
program d calls expendable program b
program d calls expendable program c
Avoid the use of bracket notation in symbolic formulae - use OPEN and RAD and instead.
Steve
At 25 FEB 1999 04:55PM Steve Smith wrote:
Make your subroutines and functions expendable. There is a slight perfomance hit but memory saving. Instead of a structure where you get:
program a calls program b calls program c
replace it with
program d calls expendable program a
program d calls expendable program b
program d calls expendable program c
Avoid the use of bracket notation in symbolic formulae - use OPEN and RAD and instead.
Steve
At 26 FEB 1999 11:11AM Tom Horan wrote:
Thanks Steve.