2015-07-12 18:47:43 +00:00
|
|
|
/*
|
|
|
|
htop - DarwinCRT.c
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2020-09-08 12:28:15 +00:00
|
|
|
#include "DarwinCRT.h"
|
2015-07-12 18:47:43 +00:00
|
|
|
#include "CRT.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-07-13 06:17:14 +00:00
|
|
|
#include <execinfo.h>
|
2015-07-12 18:47:43 +00:00
|
|
|
|
|
|
|
void CRT_handleSIGSEGV(int sgn) {
|
2015-08-19 16:56:46 +00:00
|
|
|
(void) sgn;
|
|
|
|
CRT_done();
|
|
|
|
#ifdef __APPLE__
|
2020-08-22 05:47:11 +00:00
|
|
|
fprintf(stderr, "\n\nhtop " VERSION " aborting. Please report bug at https://htop.dev\n");
|
2015-08-19 16:56:46 +00:00
|
|
|
#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 otool -tvV `which htop` > ~/htop.otool");
|
|
|
|
fprintf(stderr, "\n\nand then attach the file ~/htop.otool to your bug report.");
|
|
|
|
fprintf(stderr, "\n\nThank you for helping to improve htop!\n\n");
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
fprintf(stderr, "\nUnfortunately, you seem to be using an unsupported platform!");
|
2016-01-02 17:11:26 +00:00
|
|
|
fprintf(stderr, "\nPlease contact your platform package maintainer!\n\n");
|
2015-08-19 16:56:46 +00:00
|
|
|
#endif
|
|
|
|
abort();
|
2015-07-12 18:47:43 +00:00
|
|
|
}
|