Hi
I have an intermittent error allocating a structure under win7-64bit that doesn't appear to be a problem under win7-32bit. It's quite a large complex structure (about 30Mb). I'm currently using v5.5 but have also tried v6.2. The symptoms are slightly different under each version:
v5.5: no debug, allocation fails 9 times out of 10. v5.5: debug, allocation fails 5 times out of 10.
v6.2: no debug, allocation fails 9 times out of 10. v6.2: debug, allocation hasn't failed (yet!).
The call is a straight 'ALLOCATE(CO,STAT=IST)' where 'CO' is defined as a POINTER to a structure. If I remove the 'STAT=IST', the crash message is 'Error 408, ALLOCATE was unable to obtain sufficient storage'.
Any recommendations for debugging this? Can I verify how much memory is being requested by the allocate call before it is called, just in case some other parameter in the structure definition is making it request ginormous amounts of memory under some other circumstances?
TIA
K