From 50d80c64fa0d00cf09e57437f20b1f8ee392413f Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Thu, 12 Nov 2020 23:29:36 +0300 Subject: [PATCH] Add .gdbinit config file Set to ignore SIGSEGV and SIGPIPE signals. --- .gdbinit | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gdbinit diff --git a/.gdbinit b/.gdbinit new file mode 100644 index 0000000000..72314c333b --- /dev/null +++ b/.gdbinit @@ -0,0 +1,2 @@ +handle SIGSEGV nostop noprint +handle SIGPIPE nostop noprint