I have an app that crashes sometimes and creates the next file: (APP.exe.stackdump)
Exception: STATUS_ACCESS_VIOLATION at eip=6BA4B246
eax=67452301 ebx=EFCDAB89 ecx=98BADCFE edx=10325476 esi=FFFFFFFF edi=98BADCFE
ebp=FFFFFFFF esp=01A2C928 program=C:\APP.exe, pid 168, thread unknown (0x13E8)
cs=001B ds=0023 es=0023 fs=003B gs=0000 ss=0023
Stack trace:
Frame Function Args
End of stack trace
I'm compiling with g++ in Windows, Ubuntu and Centos. The error happens sometimes only, inside a thread, there is anyway to get the stack trace of where is happening? Or any extra info?
Update 1:
I can capture it with:
signal(SIGSEGV, sigHandler);
But still I don't have stacktrace info.
esplooks reasonable. Did you look there? A lack of a stack trace merely means that the top level return value could not be found automatically, but that only requires a very small stack corruption (one pointer) – MSalters Aug 2 '11 at 11:03gdbif compiled with-g? – Karoly Horvath Aug 2 '11 at 11:04