Hacker News new | ask | show | jobs
by trumpdong 7 days ago
Which argument to clone starts the process with an empty address space?
1 comments

That happens with execve(). clone() allows you to not copy the page table prior to the execve() call.
Which argument to clone does that?