We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de2e483 commit ad6e5e1Copy full SHA for ad6e5e1
library/std/src/sys/unix/process/process_unix.rs
@@ -216,8 +216,8 @@ impl Command {
216
}
217
218
219
- // If we get here, the 'clone3' syscall does not exist
220
- // 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.
221
cvt(libc::fork()).map(|res| (res, pidfd))
222
223
0 commit comments