vBulletin Search Engine Optimization
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
What can I do when I get this message on my AIX machine when I invoke
the Fortran program? exec(): 0509-036 Cannot load program ./hidutydrv because of the following errors 0509-026 System error: There is not enough memory available now. Thanks, and please also respond to my email address: Dan [email protected] |
|
|||
|
[email protected] wrote:
> What can I do when I get this message on my AIX machine when I invoke > the Fortran program? > > exec(): 0509-036 Cannot load program ./hidutydrv because of the > following errors > > > 0509-026 System error: There is not enough memory available > now. > > Thanks, and please also respond to my email address: > > Dan > > [email protected] 1) Did you check the size of your code at run time ? size executable_name and "man size" for details. 2) Did you check your resources limits on this host ? ulimit -a 3) In AIX an executable cannot exceed 128MB in RAM if you do not use specific options with xlf. - Look at the -bmaxdata option in xlf manual if your code/AIX kernel is 32 bits - Use -q64 option with xlf if your AIX kernel is 64bits. Patrick |