Closed GoogleCodeExporter closed 9 years ago
You are trying to get a backtrace inside a signal handler. Unfortunately,
backtrace() is not async-signal safe.
tcmalloc has a GetStackTrace function that was written to be async-signal safe
-- you could try using that, though no promises (it wasn't really ever intended
to be part of the public API). It's processor-dependent, but should work well
on i386, which it looks like is what you're using.
Original comment by csilv...@gmail.com
on 29 Jan 2011 at 7:49
Original issue reported on code.google.com by
Willia...@gmail.com
on 29 Jan 2011 at 7:38