We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85b55ce commit fa2eee7Copy full SHA for fa2eee7
library/std/src/sys/unix/process/process_unix.rs
@@ -211,8 +211,8 @@ impl Command {
211
}
212
213
214
- // If we get here, the 'clone3' syscall does not exist
215
- // or we do not have permission to call it
+ // Generally, we just call `fork`. If we get here after wanting `clone3`,
+ // then the syscall does not exist or we do not have permission to call it.
216
cvt(libc::fork()).map(|res| (res, pidfd))
217
218
0 commit comments