◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── C/FORTRAN Run-Time Error R6000 stack overflow The program ran out of stack space. This can occur when a program uses a large amount of local data or is heavily recursive. The use of p-code can cause a program to require more stack space than it would with native code. There are several ways to allocate a larger stack: ■ Recompile using the /F compiler option. ■ Relink using LINK's /STACK option. ■ Run EXEHDR on the program using the /STACK option. -♦-