View previous topic :: View next topic |
Author |
Message |
aebolzan
Joined: 06 Jul 2007 Posts: 229 Location: La Plata, Argentina
|
Posted: Sat Jul 04, 2009 2:44 am Post subject: What is the meaning of adjust stack? |
|
|
I was running a program using the debbuger and suddenly it crashes and the information I got was:
Call stack/status
exception 0xC00000FD
adjust stack
Sorry for my ignorance but what does it mean and ... is there any solution for this problem?
Agustin |
|
Back to top |
|
 |
JohnCampbell
Joined: 16 Feb 2006 Posts: 2615 Location: Sydney
|
Posted: Mon Jul 06, 2009 1:04 am Post subject: |
|
|
Agustin,
My experience has always been that to solve stack problems, there must be a problem elsewhere in the program and changing the size of the stack does not solve the problem.
Check the memory size of the program or for excessive sized local arrays.
Do you use recursion ?
C00000FD is about 3gb, so you may be a bit optimistic in your array sizes, probably very optimistic!
FTN95 / Win32 is limited to about 1.7gb of easily useable memory.
John |
|
Back to top |
|
 |
aebolzan
Joined: 06 Jul 2007 Posts: 229 Location: La Plata, Argentina
|
Posted: Mon Jul 06, 2009 1:34 am Post subject: |
|
|
OK! I will check he code very carefully. 3Gb seems to be a little too much for my arrays!!
Thanks for the tip!
Agustin |
|
Back to top |
|
 |
|