Comments on: Oops it crashed again (BSCrashNotifier) https://briksoftware.com/blog/archives/58 Thu, 14 Jun 2012 18:56:48 +0000 hourly 1 https://wordpress.org/?v=4.7 By: Jean-Daniel Dupas https://briksoftware.com/blog/archives/58/comment-page-1#comment-10701 Tue, 16 Oct 2007 12:26:59 +0000 https://briksoftware.com/blog/?p=58#comment-10701 To deal with crash on Mac OS X, a good way can also to use mach exception handling facility.
With mach exception, you can even catch a crash from an external process (that’s what the crash reporter uses).
It’s not very hard to setup, and it’s far more safe. There is very few functions you are allow to perform during a signal handler (I’m not sure you can safely call printf for example). Mach exception does not have this limitation.

]]>