In my android app in native library I add signal handler for SIGSEGV, SIGILL etc. And it works, but I don't know how I could obtain stacktrace.

I've tried Unwind* functions but they stops on signal handler. I've tried to fork from signal handler and trace parent over pthread, but it forbidden by rights.

Does anyone know good solution for this task without reading device log? Thnx

link|improve this question

50% accept rate
feedback

3 Answers

You might want to look at the ndk-gdb functionality recently introduced.

Check out Android NDK Debugging

also:

http://groups.google.com/group/android-ndk/browse_thread/thread/79c49630e94e32cf/e0485d7a02c9a5ed?pli=1

link|improve this answer
1  
GDB useful during developing stage, and my question was about published application. I want to get stacktrace of native crashes on usesrs phones and send it to me. I'v already found solution, and now creating small library for that. When it will be ready, I'll publish it there. Thnx – Henry Pushel Sep 27 '11 at 7:46
feedback

Try /data/tombstones on the device—here is an excellent article on the basics:

link|improve this answer
1  
It works only for rooted phones and can't be used for crash log autocollection on users phones – Henry Pushel Nov 10 '11 at 8:59
feedback

I think Google Breakpad is exactly what you are looking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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