From f919ed7cdfdbe613c125f0df4a98d4598df0aeec Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Sat, 20 Nov 2010 19:44:08 +0000 Subject: [PATCH] Don't ask for bug reports when running on unsupported platforms. --- CRT.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CRT.c b/CRT.c index 65bfe036..cb5982ce 100644 --- a/CRT.c +++ b/CRT.c @@ -124,7 +124,11 @@ void *backtraceArray[128]; static void CRT_handleSIGSEGV(int sgn) { (void) sgn; CRT_done(); + #if __linux fprintf(stderr, "\n\nhtop " VERSION " aborting. Please report bug at http://htop.sf.net\n"); + #else + fprintf(stderr, "\n\nhtop " VERSION " aborting. Unsupported platform.\n"); + #endif size_t size = backtrace(backtraceArray, sizeof(backtraceArray)); fprintf(stderr, "Backtrace: \n"); backtrace_symbols_fd(backtraceArray, size, 2);