From 601480003ffdee444d8e48aed4222ad8dd23bb59 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 3 Oct 2020 17:53:15 +0200 Subject: Centralise fault handling This should be done as all platforms essentially did the same anyway and there was nothing platform specific. --- solaris/SolarisCRT.c | 33 --------------------------------- solaris/SolarisCRT.h | 15 --------------- 2 files changed, 48 deletions(-) delete mode 100644 solaris/SolarisCRT.c delete mode 100644 solaris/SolarisCRT.h (limited to 'solaris') diff --git a/solaris/SolarisCRT.c b/solaris/SolarisCRT.c deleted file mode 100644 index ef16aabc..00000000 --- a/solaris/SolarisCRT.c +++ /dev/null @@ -1,33 +0,0 @@ -/* -htop - SolarisCRT.c -(C) 2014 Hisham H. Muhammad -(C) 2018 Guy M. Broome -Released under the GNU GPLv2, see the COPYING file -in the source distribution for its full text. -*/ - -#include "config.h" -#include "SolarisCRT.h" -#include "CRT.h" -#include -#include -#ifdef HAVE_EXECINFO_H -#include -#endif - -void CRT_handleSIGSEGV(int sgn) { - (void) sgn; - CRT_done(); - fprintf(stderr, "\n\nhtop " VERSION " aborting. Please report bug at https://htop.dev\n"); - #ifdef HAVE_EXECINFO_H - size_t size = backtrace(backtraceArray, sizeof(backtraceArray) / sizeof(void *)); - fprintf(stderr, "\n Please include in your report the following backtrace: \n"); - backtrace_symbols_fd(backtraceArray, size, 2); - fprintf(stderr, "\nAdditionally, in order to make the above backtrace useful,"); - fprintf(stderr, "\nplease also run the following command to generate a disassembly of your binary:"); - fprintf(stderr, "\n\n objdump -d `which htop` > ~/htop.objdump"); - fprintf(stderr, "\n\nand then attach the file ~/htop.objdump to your bug report."); - fprintf(stderr, "\n\nThank you for helping to improve htop!\n\n"); - #endif - abort(); -} diff --git a/solaris/SolarisCRT.h b/solaris/SolarisCRT.h deleted file mode 100644 index aa8c81bb..00000000 --- a/solaris/SolarisCRT.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef HEADER_SolarisCRT -#define HEADER_SolarisCRT -/* -htop - SolarisCRT.h -(C) 2014 Hisham H. Muhammad -(C) 2018 Guy M. Broome -Released under the GNU GPLv2, see the COPYING file -in the source distribution for its full text. -*/ - -#include "Macros.h" - -void CRT_handleSIGSEGV(int sgn) ATTR_NORETURN; - -#endif -- cgit v1.2.3