summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libw32c.h
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 05:12:24 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 05:12:24 +0000
commitddb951a57ed0ac94c749e971f4c0556794110275 (patch)
treeb43fb8c51041edf4f9f846ede3aa0a6c79a0ffb3 /crawl-ref/source/libw32c.h
parentb8f4f50faab8b771ad053c154e781d129ef55005 (diff)
downloadcrawl-ref-ddb951a57ed0ac94c749e971f4c0556794110275.tar.gz
crawl-ref-ddb951a57ed0ac94c749e971f4c0556794110275.zip
Implemented crash data reporting, though it's only some stubs on Windows and
DOS. On UNIX with USE_UNIX_SIGNALS defined, when any crash causing signal happens it will dump to a file the current crawl_state, anything caught by the items and monsters scans, and level building info if the crash happened during level generation. Also, if crawl is linked against the GNU C library (and the exectuable is in ELF format) it will dump the stack trace. The code attempts to automatically detect the presence of glibc, but that might not work on all systems. This should work on OS X, since there's an OS X man page for the glibc functions that get the stack trace. Don't know if it would work with MinGW. Actually getting function names for the stack trace requires the use of the "-rdynamic" linker option, which increases the size of the stripped executable by 27% (yikes!), but still prints the function names even when stripped. All of the function names in the stack trace are mangled C++ ones, but that shouldn't be too much of a problem. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8532 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libw32c.h')
-rw-r--r--crawl-ref/source/libw32c.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/libw32c.h b/crawl-ref/source/libw32c.h
index 1a54543451..500e69f131 100644
--- a/crawl-ref/source/libw32c.h
+++ b/crawl-ref/source/libw32c.h
@@ -7,6 +7,7 @@
#include <string>
#include <stdarg.h>
+#include <stdio.h>
typedef unsigned short screen_buffer_t;
@@ -60,4 +61,8 @@ inline void put_colour_ch(int colour, unsigned ch)
putwch(ch);
}
+void init_crash_handler();
+void dump_crash_info(FILE* file);
+void write_stack_trace(FILE* file, int ignore_count);
+
#endif