commit f114f92dda8c67e8f013cf01974b0e1f65c0d04e Author: Nathan Froyd froydnj@mozilla.com Date: Wed Nov 16 01:13:22 2016 -0500
Bug 1317802 - don't stop for SIGSYS in .gdbinit; r=jld
The sandboxing code generates this signal nowadays, which makes debugging with tools like rr quite frustrating.
DONTBUILD because NPOTB --- .gdbinit | 1 + 1 file changed, 1 insertion(+)
diff --git a/.gdbinit b/.gdbinit index dd9a005f67a1..08f1fc0f2011 100644 --- a/.gdbinit +++ b/.gdbinit @@ -16,6 +16,7 @@ handle SIGPIPE noprint nostop pass # sandboxing code on older kernels. handle SIG38 noprint nostop pass handle SIG64 noprint nostop pass +handle SIGSYS noprint nostop pass
# Show the concrete types behind nsIFoo set print object on