On Mar 9, 2009, at 3:17 PM, Rick Mann wrote:
On Mar 9, 2009, at 15:15:18, davel...@mac.com wrote:

On Mar 9, 2009, at 6:05 PM, Rick Mann wrote:
I want to test how well our background agent is restarted. I'd like to programmatically induce a crash. What's a good way to do so?

I'm not certain if you mean crashing use a Cocoa method, but this should certainly cause a memory fault crash.

int *x;
x = 0;
*x = 5;

Yeah, something like that. I didn't know if there was a more preferred way.

abort() and __builtin_trap() work well. They have the advantage of being grep-able when you want to take them out. abort() and __builtin_trap() and intentional memory faults should behave identically other than the precise contents of the crash log, unless you have signal handlers for SIGSEGV/SIGBUS/SIGABRT.


--
Greg Parker     gpar...@apple.com     Runtime Wrangler


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to