Commit 2378b40e authored by Doug Rabson's avatar Doug Rabson Committed by Facebook Github Bot

Add SIGQUIT to the fatal signals list

Summary: Some infrastructure sends `SIGQUIT` to stuck processes and we would like to be able to log stacktraces for these.

Reviewed By: yfeldblum

Differential Revision: D7819980

fbshipit-source-id: d99a1232ca259bd95aed82505751e6591af748ff
parent c0511309
...@@ -100,6 +100,7 @@ struct { ...@@ -100,6 +100,7 @@ struct {
{SIGABRT, "SIGABRT", {}}, {SIGABRT, "SIGABRT", {}},
{SIGBUS, "SIGBUS", {}}, {SIGBUS, "SIGBUS", {}},
{SIGTERM, "SIGTERM", {}}, {SIGTERM, "SIGTERM", {}},
{SIGQUIT, "SIGQUIT", {}},
{0, nullptr, {}}, {0, nullptr, {}},
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment