mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
22 lines
734 B
Diff
22 lines
734 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Gunnar Beutner <gbeutner@serenityos.org>
|
|
Date: Sat, 17 Apr 2021 15:40:17 +0200
|
|
Subject: [PATCH] Don't set any signal handlers
|
|
|
|
---
|
|
src/os/unix/crashlog_unix.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/os/unix/crashlog_unix.cpp b/src/os/unix/crashlog_unix.cpp
|
|
index fc3682d..32b5f1e 100644
|
|
--- a/src/os/unix/crashlog_unix.cpp
|
|
+++ b/src/os/unix/crashlog_unix.cpp
|
|
@@ -178,7 +178,7 @@ static void CDECL HandleCrash(int signum)
|
|
/* static */ void CrashLog::InitialiseCrashLog()
|
|
{
|
|
for (const int *i = _signals_to_handle; i != endof(_signals_to_handle); i++) {
|
|
- signal(*i, HandleCrash);
|
|
+ //signal(*i, HandleCrash);
|
|
}
|
|
}
|
|
|