vote up 1 vote down star

hi,

i am using AIX OS.here i am facing a problem that when ever the process crashes there is no stack written in the log.it just gives an information of signal1/10/4 has occured. but no stack is shown. since the code is an optimized code i am even not able to debud using dbx.gdb is not installed. could you please suggest how to see the stack trace whenever the program crashes. might be with any other tool or incase any cheet method to follow to view the actual stack trace?

advance thanks for the help.

flag

i typed it as signal1 instaed of signal 11:) – john Sep 24 at 8:22
you can edit your posts – swegi Sep 24 at 8:35

1 Answer

vote up 1 vote down check

This works on AIX 5.1:

Use the ulimit command to set the limit for core dumps, before you start the binary (the limit is likely set to 0, which means you're not getting any core dump at all). You will need to do this in the same shell as the process you run. Then you can use the debugger to see the stack in the core. You will need to have debugging symbols in the binary to make much sense out of it, though. Check 'man ulimit' to see how ulimit works. Good luck!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.