Browsing articles from "February, 2012"

CPP Rocks

Feb 21, 2012   //   by admin   //   C++  //  No Comments

>Interesting CPP Website – CPP Rocks

http://www.cpprocks.com/

iPhone – Get Symbols for Call Stack

Feb 2, 2012   //   by admin   //   iOS  //  1 Comment

OK, so it is more a work around than a solution. It worked for me and but it has saved me a lot of time. Simply implement your own exception handler! This will give you the full stack trace and straight away tell you where a SIGABRT is occurring.

Add the following code to your app:

In AppDelegate:
void exceptionHandler(NSException*exception){     NSLog(@"Exception Description: %@", exception);    NSLog(@"Stack Trace: %@",[exception callStackSymbols]); }
Then in didFinishLaunchingWithOptions, add:
NSSetUncaughtExceptionHandler(&exceptionHandler);

Linux/Mac/Windows open source project

Feb 1, 2012   //   by admin   //   Linux  //  No Comments

>The GTK+ Project:
http://www.gtk.org/