Re: turning off crash report dialog
Re: turning off crash report dialog
- Subject: Re: turning off crash report dialog
- From: Eric Albert <email@hidden>
- Date: Wed, 23 Jun 2004 21:58:08 -0700
On Jun 23, 2004, at 9:06 AM, Fazekas, Miklss wrote:
Is there a way of turning off the dialog which asks if I want to
send a report to Apple every time my app crashes?
You can try installing a carbon exception handler (or signal handler),
and just quit the app.
The idea is that you can install a handler so that when your app
crash, this handler will be called.
You can then use longjmp to jump to the end of your app, or just call
(?) exit() from this handler.
I'm not familiar with Carbon exception handlers, but you shouldn't call
exit() from a signal handler. Use _exit() instead.
-Eric
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.