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