(svn r17706) -Codechange: [OSX] Rework the crash handling to use the common CrashLog infrastructure.

This commit is contained in:
michi_cc
2009-10-04 21:08:30 +00:00
parent 9e85c8da66
commit 83e1f7358f
10 changed files with 267 additions and 151 deletions

View File

@@ -58,14 +58,7 @@
#include <cstring>
#include <cstdlib>
#include <climits>
/* MacOS X will use an NSAlert to display failed assertaions since they're lost unless running from a terminal
* strgen always runs from terminal and don't need a window for asserts */
#if !defined(__APPLE__) || defined(STRGEN)
#include <cassert>
#else
#include "os/macosx/macos.h"
#endif
#include <cassert>
#if defined(UNIX) || defined(__MINGW32__)
#include <sys/types.h>