aboutsummaryrefslogtreecommitdiff
path: root/devel/libdatadog/files/patch-crashtracker-src-collector-crash_handler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'devel/libdatadog/files/patch-crashtracker-src-collector-crash_handler.rs')
-rw-r--r--devel/libdatadog/files/patch-crashtracker-src-collector-crash_handler.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/devel/libdatadog/files/patch-crashtracker-src-collector-crash_handler.rs b/devel/libdatadog/files/patch-crashtracker-src-collector-crash_handler.rs
deleted file mode 100644
index f055d23ccd49..000000000000
--- a/devel/libdatadog/files/patch-crashtracker-src-collector-crash_handler.rs
+++ /dev/null
@@ -1,11 +0,0 @@
---- crashtracker/src/collector/crash_handler.rs.orig 2025-02-11 17:46:31 UTC
-+++ crashtracker/src/collector/crash_handler.rs
-@@ -48,7 +48,7 @@ use std::time::{Duration, Instant};
- // Macos seems to have deprecated vfork. The reason to prefer vfork is to suppress atfork
- // handlers. This is OK because macos is primarily a test platform, and we have system-level
- // testing on Linux in various CI environments.
--#[cfg(target_os = "macos")]
-+#[cfg(any(target_os = "freebsd", target_os = "macos"))]
- use libc::fork as vfork;
-
- #[cfg(target_os = "linux")]