Fork() in the road paper
Fork() in the road paper
Posted Jun 5, 2026 22:57 UTC (Fri) by malmedal (subscriber, #56172)In reply to: Fork() in the road paper by gutschke
Parent article: Moving beyond fork() + exec()
If you want hacky. Why not just CLONE_VM without CLONE_VFORK?
It's somewhat annoying because you have to allocate a stack in the parent process and you can't reuse that area until you are sure the child has called exec but not insurmountable.
