• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag
 

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Apple crash reports
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Apple crash reports


  • Subject: Re: Apple crash reports
  • From: Le Stang Jean-Baptiste <email@hidden>
  • Date: Sun, 28 Aug 2005 15:42:26 +0200

Or you can try to trap some of the signals send when the app is crashing :

#include <stdio.h>
#include <signal.h>

void function(int a){
        system("open -a iChat");
        exit(-1);
}

int main(){
        signal(SIGSEGV,function);
        signal(SIGBUS,function);
         *((char *)NULL) = 0xDEADBEEF;
        return 0;
}

When the app send a SIGBUS or SIGSEV signal, 'function' is called and starts iChat.

Does anyone know how to deactivate Apple's Crash Reporter for a given application?

How to extends this this to plug-ins?

++ Jean-Baptiste LE STANG

On Aug 28, 2005, at 2:21 PM, Alexander v. Below wrote:

Yes, it is offered by
www.Zonic.co.uk

Apple - being a large company - has privacy and legal issues still unresolved before we can get the crash results. This topic has been raised on previous WWDC feedbacks, and Apple is apparently thinking about how that should be handled.

Bye

Alex

Am 27.08.2005 um 17:44 schrieb Nick Zitzmann:



On Aug 27, 2005, at 9:15 AM, André-John Mas wrote:



When applications crash, the user has the option to send the crash report to Apple. As a third party developer that information would be useful to me as well. Is there any way to register an application with Apple, so I can get the content of the crash report when my application crashes?



No, but there's a few third-party solutions that claim to do that. Try searching VersionTracker for crash/bug reporters.


Nick Zitzmann
<http://www.chronosnet.com/>

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden



_______________________________________________ Do not post admin requests to the list. They will be ignored. Cocoa-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden



_______________________________________________ Do not post admin requests to the list. They will be ignored. Cocoa-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
  • Follow-Ups:
    • Re: Apple crash reports
      • From: Tom Harrington <email@hidden>
    • Re: Apple crash reports
      • From: Le Stang Jean-Baptiste <email@hidden>
References: 
 >Apple crash reports (From: AndrĂ©-John Mas <email@hidden>)
 >Re: Apple crash reports (From: Nick Zitzmann <email@hidden>)
 >Re: Apple crash reports (From: "Alexander v. Below" <email@hidden>)

  • Prev by Date: Modifying the data model
  • Next by Date: Re: Apple crash reports
  • Previous by thread: Re: Apple crash reports
  • Next by thread: Re: Apple crash reports
  • Index(es):
    • Date
    • Thread