Re: turning off crash report dialog
Re: turning off crash report dialog
- Subject: Re: turning off crash report dialog
- From: "Fazekas, Miklós" <email@hidden>
- Date: Wed, 23 Jun 2004 18:06:34 +0200
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.
[http://developer.apple.com/documentation/mac/PPCSoftware/PPCSoftware
-81.html]
Regards,
Miklss
_______________________________________________
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.