Skip to content

Commit

Permalink
Update spawning-processes-on-linux article
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbobbio committed Nov 12, 2024
1 parent d7e1c83 commit c96a454
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/content/blog/spawning-processes-on-linux/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ turns out) is okay, but what other housekeeping is okay in practice? It’s not
researching across the internet leads to many others showing a fair amount of anxiety about this
problem

On Linux, the behavior of vfork can be recreated using `clone`, (which we will cover later) in a way
where we don’t have to share a stack, I believe this is always preferable.
On Linux, the behavior of `vfork` can be recreated using `clone`, (which we will cover later) in a
way where we don’t have to share a stack, I believe this is always preferable.

## `posix_spawn`
Another way to try to get the speed up we want would be to use `posix_spawn`. The latest version of
Expand Down

0 comments on commit c96a454

Please sign in to comment.