1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Restore original signal handlers on profiler exit.

This commit is contained in:
Bartosz Taudul
2021-07-25 11:40:22 +02:00
parent 5936e7c86c
commit 54fa21bcbb
2 changed files with 23 additions and 7 deletions
+6
View File
@@ -811,6 +811,12 @@ private:
char* m_queryData;
char* m_queryDataPtr;
#ifdef __linux__
struct {
struct sigaction pwr, ill, fpe, segv, pipe, bus, abrt;
} m_prevSignal;
#endif
};
}