fork() Considered Harmful in macOS
drewgregory
29 points
9 comments
August 26, 2026
Related Discussions
Found 5 related stories in 68.8ms across 4,560 title embeddings via pgvector HNSW
- Researchers replace downloaded macOS apps with evil twins, Apple shrugs sbulaev · 17 pts · July 25, 2026 · 47% similar
- Toggles Considered Harmful opwizardx · 15 pts · August 10, 2026 · 46% similar
- About the security content of macOS Tahoe 26.6 andor · 202 pts · July 28, 2026 · 45% similar
- JEP 541: Deprecate the macOS/x64 Port for Removal pmg1991 · 95 pts · July 24, 2026 · 44% similar
- hdiutil is deprecated in macOS 27 Golden Gate zdw · 179 pts · August 22, 2026 · 44% similar
Discussion Highlights (4 comments)
dmitrygr
fork() was always very restricted in when it could be used and really dangerous even then. It was made for a world where process == thread, and since that ceased to be true it's been a large footgun. Use spawn if you need to launch a process, reconsider your life if your immediate post-fork() syscall is not exec()
nasretdinov
I believe what's being described in the article is the same reason why some shells like fish also use posix_spawn() on macOS instead of fork/exec. Not only is it much faster, but it's also effectively problem-free for multi-threaded applications
cestith
The man page on macOS suggests that if you need the child to be a copy of the parent like you’d get after fork(), that you can fork() then exec() the same program in the child. That gives it enough independence to be safe. Using fork() without exec() was once a tried and true way to have a parent manage one or more children that just run a different branch of the code after the fork. It doesn’t work as well when you have a lot of async and a lot of fired signals right after forking, though. It gets worse if your signal handlers do more than, for example, assigning a value to a scalar variable and that’s honestly partially true of signal handlers no matter whether you’ve forked or not. That’s probably why Go blocks signals during that time after a fork(), for better or worse. So, TL;DR, if you need to run a child with the same code as the parent, exec() a copy like the manpage suggests especially on macOS. It’s a shame old Unix code that used this model won’t work as well as they used to across different Unix flavors. At least it's not much hassle to fix.
dcrazy
The stubbornness of the Go standard library team knows no bounds.