groups

Link to this snippet:


Download to Code Collector

language: Objective-C
licence: Other

Force Application Crash

options: send to code collectorview all myztikjenz's snippets
// Helpful for when you're trying to test what your app does when it faults.
// You could also just divide by zero, but that'll only work on Intel.  PPC returns 0.
#define CRASH_CODE 1
#if CRASH_CODE
	NSLog( @"forcing crash" );
	kill( getpid(), SIGABRT );
#endif