zed/crates/repl/src
Jakub Konka 16dfc60ad2
util: Always use posix_spawn on macOS even with pre_exec hooks (#49090)
Here's some backstory:
* on macOS, @cole-miller and I noticed that since roughly Oct 2025, due
to some changes to latest macOS Tahoe, for any spawned child process we
needed to reset Mach exception ports
(https://github.com/zed-industries/zed/issues/36754 +
6e8f2d2ebe)
* the changes in that PR achieve that via `pre_exec` hook on
`std::process::Command` which then abandons `posix_spawn` syscall for
`fork` + `execve` dance on macOS (we tracked it down in Rust's std
implementation)
* as it turns out, `fork` + `execve` is pretty expensive on macOS
(apparently way more so than on other OSes like Linux) and `fork` takes
a process-wide lock on the allocator which is bad
* however, since we wanna reset exception ports on the child, the only
official way supported by Rust's std is to use `pre_exec` hook
* posix_spawn on macOS exposes this tho via a macOS specific extension
to that syscall `posix_spawnattr_setexceptionports_np` but there is no
way to use that via any standard interfaces in `std::process::Command`
* thus, it seemed like a good idea to instead create our own custom
Command wrapper that on non-macOS hosts is a zero-cost wrapper of
`smol::process::Command`, while on macOS we reimplement the minimum to
achieve `smol::process::Command`  with `posix_spawn` under-the-hood

Notably, this changeset improves git-blame in very large repos
significantly.

Release Notes:

- Fixed performance spawning child processes on macOS by always forcing
`posix_spawn` no matter what.

---------

Co-authored-by: Cole Miller <cole@zed.dev>
2026-02-13 20:16:11 +01:00
..
components repl: List python environments first (#48763) 2026-02-12 08:20:20 +01:00
kernels util: Always use posix_spawn on macOS even with pre_exec hooks (#49090) 2026-02-13 20:16:11 +01:00
notebook repl: List python environments first (#48763) 2026-02-12 08:20:20 +01:00
outputs repl: Write test for JSON output (#48897) 2026-02-11 17:23:12 +01:00
components.rs
jupyter_settings.rs Automate settings registration (#42238) 2025-11-07 22:27:14 +00:00
notebook.rs
outputs.rs repl: Initial stdin support for kernels (#48851) 2026-02-13 08:18:55 +01:00
repl.rs repl: List python environments first (#48763) 2026-02-12 08:20:20 +01:00
repl_editor.rs util: Always use posix_spawn on macOS even with pre_exec hooks (#49090) 2026-02-13 20:16:11 +01:00
repl_sessions_ui.rs repl: Pluck project off editor directly (#48808) 2026-02-09 20:18:24 +01:00
repl_settings.rs Add configurable REPL output size limits (#47114) 2026-02-03 04:32:38 +00:00
repl_store.rs repl: List python environments first (#48763) 2026-02-12 08:20:20 +01:00
session.rs repl: Initial stdin support for kernels (#48851) 2026-02-13 08:18:55 +01:00