in some situations on some of our p1 devices we sometime get lots of panic (10) restarts. in an old post i read:
At the moment, all of the AssertionFailures are in things related to threads and the system thread, but that’s just because those are the only things that have been instrumented with an AssertionFailure panic.
This will be difficult to debug. The assertion failure usually results because of memory corruption somewhere else. This could be overwriting a block of memory, using a freed pointer, etc..
While you can put a breakpoint in the panic handler, it's not always helpful because the problem isn't always in the stack backtrace because memory was corrupted somewhere else.
thanks @gusgonnet, this is what i am doing. problem is that the panics seem to happen in very specific situations (and i am not exactly sure what they are)... time consuming indeed! cheers!