aboutsummaryrefslogtreecommitdiff
path: root/editors/zed/files/patch-crates_remote__server_src_unix.rs
diff options
context:
space:
mode:
Diffstat (limited to 'editors/zed/files/patch-crates_remote__server_src_unix.rs')
-rw-r--r--editors/zed/files/patch-crates_remote__server_src_unix.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/editors/zed/files/patch-crates_remote__server_src_unix.rs b/editors/zed/files/patch-crates_remote__server_src_unix.rs
new file mode 100644
index 000000000000..5651c60c6719
--- /dev/null
+++ b/editors/zed/files/patch-crates_remote__server_src_unix.rs
@@ -0,0 +1,18 @@
+--- crates/remote_server/src/unix.rs.orig 2025-11-15 05:26:18 UTC
++++ crates/remote_server/src/unix.rs
+@@ -347,6 +347,7 @@ pub fn execute_run(
+
+ let app = gpui::Application::headless();
+ let id = std::process::id().to_string();
++ #[cfg(not(target_os = "freebsd"))]
+ app.background_executor()
+ .spawn(crashes::init(crashes::InitCrashHandler {
+ session_id: id,
+@@ -562,6 +563,7 @@ pub(crate) fn execute_proxy(
+ let server_paths = ServerPaths::new(&identifier)?;
+
+ let id = std::process::id().to_string();
++ #[cfg(not(target_os = "freebsd"))]
+ smol::spawn(crashes::init(crashes::InitCrashHandler {
+ session_id: id,
+ zed_version: VERSION.to_owned(),