2010-01-03 14:52:38 +01:00
|
|
|
|
/*
|
2010-12-30 21:15:55 +01:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-01-03 14:52:38 +01:00
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2010-01-03 14:52:38 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2011-10-23 00:40:02 +02:00
|
|
|
|
#include "all.h"
|
|
|
|
|
|
2010-01-03 14:52:38 +01:00
|
|
|
|
#include <ev.h>
|
|
|
|
|
#include <iconv.h>
|
|
|
|
|
#include <signal.h>
|
2012-09-10 16:47:05 +02:00
|
|
|
|
#include <sys/wait.h>
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
|
|
|
|
#include <xcb/xcb_event.h>
|
|
|
|
|
|
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
typedef struct dialog_t {
|
|
|
|
|
xcb_window_t id;
|
|
|
|
|
xcb_colormap_t colormap;
|
|
|
|
|
Rect dims;
|
|
|
|
|
surface_t surface;
|
2012-09-10 16:47:05 +02:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
TAILQ_ENTRY(dialog_t)
|
|
|
|
|
dialogs;
|
|
|
|
|
} dialog_t;
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
static TAILQ_HEAD(dialogs_head, dialog_t) dialogs = TAILQ_HEAD_INITIALIZER(dialogs);
|
|
|
|
|
static int raised_signal;
|
2012-09-10 16:47:05 +02:00
|
|
|
|
static int backtrace_done = 0;
|
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
static int sighandler_backtrace(void);
|
|
|
|
|
static void sighandler_setup(void);
|
|
|
|
|
static void sighandler_create_dialogs(void);
|
|
|
|
|
static void sighandler_destroy_dialogs(void);
|
|
|
|
|
static void sighandler_handle_expose(void);
|
|
|
|
|
static void sighandler_draw_dialog(dialog_t *dialog);
|
|
|
|
|
static void sighandler_handle_key_press(xcb_key_press_event_t *event);
|
|
|
|
|
|
|
|
|
|
static i3String *message_intro;
|
|
|
|
|
static i3String *message_intro2;
|
|
|
|
|
static i3String *message_option_backtrace;
|
|
|
|
|
static i3String *message_option_restart;
|
|
|
|
|
static i3String *message_option_forget;
|
|
|
|
|
static int dialog_width;
|
|
|
|
|
static int dialog_height;
|
|
|
|
|
|
|
|
|
|
static int border_width = 2;
|
|
|
|
|
static int margin = 4;
|
|
|
|
|
|
2012-09-10 16:47:05 +02:00
|
|
|
|
/*
|
|
|
|
|
* Attach gdb to pid_parent and dump a backtrace to i3-backtrace.$pid in the
|
|
|
|
|
* tmpdir
|
|
|
|
|
*/
|
2017-01-04 10:41:47 +01:00
|
|
|
|
static int sighandler_backtrace(void) {
|
2012-09-10 16:47:05 +02:00
|
|
|
|
char *tmpdir = getenv("TMPDIR");
|
|
|
|
|
if (tmpdir == NULL)
|
|
|
|
|
tmpdir = "/tmp";
|
|
|
|
|
|
|
|
|
|
pid_t pid_parent = getpid();
|
|
|
|
|
|
|
|
|
|
char *filename = NULL;
|
2012-09-11 13:07:20 +02:00
|
|
|
|
int suffix = 0;
|
|
|
|
|
/* Find a unique filename for the backtrace (since the PID of i3 stays the
|
|
|
|
|
* same), so that we don’t overwrite earlier backtraces. */
|
|
|
|
|
do {
|
|
|
|
|
FREE(filename);
|
|
|
|
|
sasprintf(&filename, "%s/i3-backtrace.%d.%d.txt", tmpdir, pid_parent, suffix);
|
|
|
|
|
suffix++;
|
2018-08-01 17:12:55 +02:00
|
|
|
|
} while (path_exists(filename));
|
2012-09-10 16:47:05 +02:00
|
|
|
|
|
|
|
|
|
pid_t pid_gdb = fork();
|
|
|
|
|
if (pid_gdb < 0) {
|
|
|
|
|
DLOG("Failed to fork for GDB\n");
|
|
|
|
|
return -1;
|
|
|
|
|
} else if (pid_gdb == 0) {
|
|
|
|
|
/* child */
|
2012-09-11 12:57:53 +02:00
|
|
|
|
int stdin_pipe[2],
|
|
|
|
|
stdout_pipe[2];
|
|
|
|
|
|
2015-03-24 13:57:06 +01:00
|
|
|
|
if (pipe(stdin_pipe) == -1) {
|
|
|
|
|
ELOG("Failed to init stdin_pipe\n");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
if (pipe(stdout_pipe) == -1) {
|
|
|
|
|
ELOG("Failed to init stdout_pipe\n");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2012-09-10 16:47:05 +02:00
|
|
|
|
|
|
|
|
|
/* close standard streams in case i3 is started from a terminal; gdb
|
|
|
|
|
* needs to run without controlling terminal for it to work properly in
|
|
|
|
|
* this situation */
|
|
|
|
|
close(STDIN_FILENO);
|
|
|
|
|
close(STDOUT_FILENO);
|
|
|
|
|
close(STDERR_FILENO);
|
|
|
|
|
|
2012-09-11 12:57:53 +02:00
|
|
|
|
/* We provide pipe file descriptors for stdin/stdout because gdb < 7.5
|
|
|
|
|
* crashes otherwise, see
|
2017-09-24 10:19:07 +02:00
|
|
|
|
* https://sourceware.org/bugzilla/show_bug.cgi?id=14114 */
|
2012-09-11 12:57:53 +02:00
|
|
|
|
dup2(stdin_pipe[0], STDIN_FILENO);
|
|
|
|
|
dup2(stdout_pipe[1], STDOUT_FILENO);
|
|
|
|
|
|
2012-09-11 13:02:59 +02:00
|
|
|
|
char *pid_s, *gdb_log_cmd;
|
2012-09-10 16:47:05 +02:00
|
|
|
|
sasprintf(&pid_s, "%d", pid_parent);
|
2012-09-11 13:02:59 +02:00
|
|
|
|
sasprintf(&gdb_log_cmd, "set logging file %s", filename);
|
2012-09-10 16:47:05 +02:00
|
|
|
|
|
|
|
|
|
char *args[] = {
|
|
|
|
|
"gdb",
|
|
|
|
|
start_argv[0],
|
|
|
|
|
"-p",
|
|
|
|
|
pid_s,
|
|
|
|
|
"-batch",
|
|
|
|
|
"-nx",
|
|
|
|
|
"-ex", gdb_log_cmd,
|
|
|
|
|
"-ex", "set logging on",
|
|
|
|
|
"-ex", "bt full",
|
|
|
|
|
"-ex", "quit",
|
2014-06-15 19:07:02 +02:00
|
|
|
|
NULL};
|
2012-09-10 16:47:05 +02:00
|
|
|
|
execvp(args[0], args);
|
|
|
|
|
DLOG("Failed to exec GDB\n");
|
2020-01-16 09:21:27 +01:00
|
|
|
|
exit(EXIT_FAILURE);
|
2012-09-10 16:47:05 +02:00
|
|
|
|
}
|
|
|
|
|
int status = 0;
|
|
|
|
|
|
|
|
|
|
waitpid(pid_gdb, &status, 0);
|
|
|
|
|
|
2016-04-04 09:33:59 +02:00
|
|
|
|
/* see if the backtrace was successful or not */
|
2012-09-10 16:47:05 +02:00
|
|
|
|
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
|
|
|
|
|
DLOG("GDB did not run properly\n");
|
|
|
|
|
return -1;
|
2018-08-01 17:12:55 +02:00
|
|
|
|
} else if (!path_exists(filename)) {
|
2012-09-20 10:55:03 +02:00
|
|
|
|
DLOG("GDB executed successfully, but no backtrace was generated\n");
|
2012-09-10 16:47:05 +02:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
static void sighandler_setup(void) {
|
|
|
|
|
border_width = logical_px(border_width);
|
|
|
|
|
margin = logical_px(margin);
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
int num_lines = 5;
|
|
|
|
|
message_intro = i3string_from_utf8("i3 has just crashed. Please report a bug for this.");
|
|
|
|
|
message_intro2 = i3string_from_utf8("To debug this problem, you can either attach gdb or choose from the following options:");
|
|
|
|
|
message_option_backtrace = i3string_from_utf8("- 'b' to save a backtrace (requires gdb)");
|
|
|
|
|
message_option_restart = i3string_from_utf8("- 'r' to restart i3 in-place");
|
|
|
|
|
message_option_forget = i3string_from_utf8("- 'f' to forget the previous layout and restart i3");
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
int width_longest_message = predict_text_width(message_intro2);
|
|
|
|
|
|
|
|
|
|
dialog_width = width_longest_message + 2 * border_width + 2 * margin;
|
|
|
|
|
dialog_height = num_lines * config.font.height + 2 * border_width + 2 * margin;
|
2010-01-03 14:52:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
static void sighandler_create_dialogs(void) {
|
|
|
|
|
Output *output;
|
2020-02-19 11:31:09 +01:00
|
|
|
|
TAILQ_FOREACH (output, &outputs, outputs) {
|
2017-01-04 10:41:47 +01:00
|
|
|
|
if (!output->active) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2010-03-24 16:10:47 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
dialog_t *dialog = scalloc(1, sizeof(struct dialog_t));
|
|
|
|
|
TAILQ_INSERT_TAIL(&dialogs, dialog, dialogs);
|
2010-03-24 16:10:47 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
xcb_visualid_t visual = get_visualid_by_depth(root_depth);
|
|
|
|
|
dialog->colormap = xcb_generate_id(conn);
|
|
|
|
|
xcb_create_colormap(conn, XCB_COLORMAP_ALLOC_NONE, dialog->colormap, root, visual);
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
uint32_t mask = 0;
|
|
|
|
|
uint32_t values[4];
|
|
|
|
|
int i = 0;
|
2012-09-10 16:47:05 +02:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
/* Needs to be set in the case of a 32-bit root depth. */
|
|
|
|
|
mask |= XCB_CW_BACK_PIXEL;
|
|
|
|
|
values[i++] = root_screen->black_pixel;
|
2012-09-10 16:47:05 +02:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
/* Needs to be set in the case of a 32-bit root depth. */
|
|
|
|
|
mask |= XCB_CW_BORDER_PIXEL;
|
|
|
|
|
values[i++] = root_screen->black_pixel;
|
2010-01-03 21:54:26 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
mask |= XCB_CW_OVERRIDE_REDIRECT;
|
|
|
|
|
values[i++] = 1;
|
2010-12-30 21:43:34 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
/* Needs to be set in the case of a 32-bit root depth. */
|
|
|
|
|
mask |= XCB_CW_COLORMAP;
|
|
|
|
|
values[i++] = dialog->colormap;
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
dialog->dims.x = output->rect.x + (output->rect.width / 2);
|
|
|
|
|
dialog->dims.y = output->rect.y + (output->rect.height / 2);
|
|
|
|
|
dialog->dims.width = dialog_width;
|
|
|
|
|
dialog->dims.height = dialog_height;
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
/* Make sure the dialog is centered. */
|
|
|
|
|
dialog->dims.x -= dialog->dims.width / 2;
|
|
|
|
|
dialog->dims.y -= dialog->dims.height / 2;
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
dialog->id = create_window(conn, dialog->dims, root_depth, visual,
|
|
|
|
|
XCB_WINDOW_CLASS_INPUT_OUTPUT, XCURSOR_CURSOR_POINTER,
|
|
|
|
|
true, mask, values);
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
draw_util_surface_init(conn, &(dialog->surface), dialog->id, get_visualtype_by_id(visual),
|
|
|
|
|
dialog->dims.width, dialog->dims.height);
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
xcb_grab_keyboard(conn, false, dialog->id, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
/* Confine the pointer to the crash dialog. */
|
|
|
|
|
xcb_grab_pointer(conn, false, dialog->id, XCB_NONE, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, dialog->id,
|
|
|
|
|
XCB_NONE, XCB_CURRENT_TIME);
|
|
|
|
|
}
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
sighandler_handle_expose();
|
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void sighandler_destroy_dialogs(void) {
|
|
|
|
|
while (!TAILQ_EMPTY(&dialogs)) {
|
|
|
|
|
dialog_t *dialog = TAILQ_FIRST(&dialogs);
|
|
|
|
|
|
|
|
|
|
xcb_free_colormap(conn, dialog->colormap);
|
|
|
|
|
draw_util_surface_free(conn, &(dialog->surface));
|
|
|
|
|
xcb_destroy_window(conn, dialog->id);
|
|
|
|
|
|
|
|
|
|
TAILQ_REMOVE(&dialogs, dialog, dialogs);
|
|
|
|
|
free(dialog);
|
|
|
|
|
}
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
xcb_flush(conn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void sighandler_handle_expose(void) {
|
|
|
|
|
dialog_t *current;
|
2020-02-19 11:31:09 +01:00
|
|
|
|
TAILQ_FOREACH (current, &dialogs, dialogs) {
|
2017-01-04 10:41:47 +01:00
|
|
|
|
sighandler_draw_dialog(current);
|
|
|
|
|
}
|
2010-01-03 14:52:38 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
xcb_flush(conn);
|
2010-01-03 14:52:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
static void sighandler_draw_dialog(dialog_t *dialog) {
|
|
|
|
|
const color_t black = draw_util_hex_to_color("#000000");
|
|
|
|
|
const color_t white = draw_util_hex_to_color("#FFFFFF");
|
|
|
|
|
const color_t red = draw_util_hex_to_color("#FF0000");
|
|
|
|
|
|
|
|
|
|
/* Start with a clean slate and draw a red border. */
|
2017-01-13 18:34:09 +01:00
|
|
|
|
draw_util_clear_surface(&(dialog->surface), red);
|
|
|
|
|
draw_util_rectangle(&(dialog->surface), black, border_width, border_width,
|
2017-01-04 10:41:47 +01:00
|
|
|
|
dialog->dims.width - 2 * border_width, dialog->dims.height - 2 * border_width);
|
|
|
|
|
|
|
|
|
|
int y = border_width + margin;
|
|
|
|
|
const int x = border_width + margin;
|
|
|
|
|
const int max_width = dialog->dims.width - 2 * x;
|
|
|
|
|
|
|
|
|
|
draw_util_text(message_intro, &(dialog->surface), white, black, x, y, max_width);
|
|
|
|
|
y += config.font.height;
|
|
|
|
|
|
|
|
|
|
draw_util_text(message_intro2, &(dialog->surface), white, black, x, y, max_width);
|
|
|
|
|
y += config.font.height;
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
char *bt_color = "#FFFFFF";
|
|
|
|
|
if (backtrace_done < 0) {
|
|
|
|
|
bt_color = "#AA0000";
|
|
|
|
|
} else if (backtrace_done > 0) {
|
|
|
|
|
bt_color = "#00AA00";
|
2012-08-07 22:30:37 +02:00
|
|
|
|
}
|
2017-01-04 10:41:47 +01:00
|
|
|
|
draw_util_text(message_option_backtrace, &(dialog->surface), draw_util_hex_to_color(bt_color), black, x, y, max_width);
|
|
|
|
|
y += config.font.height;
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
draw_util_text(message_option_restart, &(dialog->surface), white, black, x, y, max_width);
|
|
|
|
|
y += config.font.height;
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
draw_util_text(message_option_forget, &(dialog->surface), white, black, x, y, max_width);
|
|
|
|
|
y += config.font.height;
|
|
|
|
|
}
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
static void sighandler_handle_key_press(xcb_key_press_event_t *event) {
|
|
|
|
|
uint16_t state = event->state;
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
/* Apparently, after activating numlock once, the numlock modifier
|
|
|
|
|
* stays turned on (use xev(1) to verify). So, to resolve useful
|
|
|
|
|
* keysyms, we remove the numlock flag from the event state */
|
|
|
|
|
state &= ~xcb_numlock_mask;
|
|
|
|
|
|
|
|
|
|
xcb_keysym_t sym = xcb_key_press_lookup_keysym(keysyms, event, state);
|
|
|
|
|
|
|
|
|
|
if (sym == 'b') {
|
|
|
|
|
DLOG("User issued core-dump command.\n");
|
|
|
|
|
|
|
|
|
|
/* fork and exec/attach GDB to the parent to get a backtrace in the
|
|
|
|
|
* tmpdir */
|
|
|
|
|
backtrace_done = sighandler_backtrace();
|
|
|
|
|
sighandler_handle_expose();
|
|
|
|
|
} else if (sym == 'r') {
|
|
|
|
|
sighandler_destroy_dialogs();
|
|
|
|
|
i3_restart(false);
|
|
|
|
|
} else if (sym == 'f') {
|
|
|
|
|
sighandler_destroy_dialogs();
|
|
|
|
|
i3_restart(true);
|
2010-12-30 21:15:55 +01:00
|
|
|
|
}
|
2012-09-10 16:47:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-21 01:28:31 +02:00
|
|
|
|
static void handle_signal(int sig, siginfo_t *info, void *data) {
|
2012-09-10 16:47:05 +02:00
|
|
|
|
DLOG("i3 crashed. SIG: %d\n", sig);
|
|
|
|
|
|
|
|
|
|
struct sigaction action;
|
|
|
|
|
action.sa_handler = SIG_DFL;
|
2017-08-31 16:48:33 +02:00
|
|
|
|
action.sa_flags = 0;
|
|
|
|
|
sigemptyset(&action.sa_mask);
|
2012-09-10 16:47:05 +02:00
|
|
|
|
sigaction(sig, &action, NULL);
|
|
|
|
|
raised_signal = sig;
|
|
|
|
|
|
2017-01-04 10:41:47 +01:00
|
|
|
|
sighandler_setup();
|
|
|
|
|
sighandler_create_dialogs();
|
2010-12-30 21:15:55 +01:00
|
|
|
|
|
2011-03-18 14:36:36 +01:00
|
|
|
|
xcb_generic_event_t *event;
|
|
|
|
|
/* Yay, more own eventhandlers… */
|
|
|
|
|
while ((event = xcb_wait_for_event(conn))) {
|
|
|
|
|
/* Strip off the highest bit (set if the event is generated) */
|
|
|
|
|
int type = (event->response_type & 0x7F);
|
2017-01-04 10:41:47 +01:00
|
|
|
|
switch (type) {
|
|
|
|
|
case XCB_KEY_PRESS:
|
|
|
|
|
sighandler_handle_key_press((xcb_key_press_event_t *)event);
|
|
|
|
|
break;
|
|
|
|
|
case XCB_EXPOSE:
|
|
|
|
|
if (((xcb_expose_event_t *)event)->count == 0) {
|
|
|
|
|
sighandler_handle_expose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
2011-03-18 14:36:36 +01:00
|
|
|
|
}
|
2017-01-04 10:41:47 +01:00
|
|
|
|
|
2011-03-18 14:36:36 +01:00
|
|
|
|
free(event);
|
|
|
|
|
}
|
2010-01-03 14:52:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2017-01-04 10:41:47 +01:00
|
|
|
|
* Configured a signal handler to gracefully handle crashes and allow the user
|
|
|
|
|
* to generate a backtrace and rescue their session.
|
2010-01-03 14:52:38 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2012-03-31 10:53:04 +02:00
|
|
|
|
void setup_signal_handler(void) {
|
2010-12-30 21:15:55 +01:00
|
|
|
|
struct sigaction action;
|
2010-01-03 21:54:26 +01:00
|
|
|
|
|
2010-12-30 21:15:55 +01:00
|
|
|
|
action.sa_sigaction = handle_signal;
|
|
|
|
|
action.sa_flags = SA_NODEFER | SA_RESETHAND | SA_SIGINFO;
|
|
|
|
|
sigemptyset(&action.sa_mask);
|
2010-01-03 21:55:22 +01:00
|
|
|
|
|
2011-12-10 12:05:37 +01:00
|
|
|
|
/* Catch all signals with default action "Core", see signal(7) */
|
|
|
|
|
if (sigaction(SIGQUIT, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGILL, &action, NULL) == -1 ||
|
2011-01-28 00:47:49 +01:00
|
|
|
|
sigaction(SIGABRT, &action, NULL) == -1 ||
|
2011-12-10 12:05:37 +01:00
|
|
|
|
sigaction(SIGFPE, &action, NULL) == -1 ||
|
|
|
|
|
sigaction(SIGSEGV, &action, NULL) == -1)
|
2015-06-30 20:48:35 +02:00
|
|
|
|
ELOG("Could not setup signal handler.\n");
|
2010-01-03 14:52:38 +01:00
|
|
|
|
}
|