-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
stdbuf: use exec instead of forking #9495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
stdbuf: use exec instead of forking #9495
Conversation
|
GNU testsuite comparison: |
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
de2b66c to
0110357
Compare
|
GNU testsuite comparison: |
CodSpeed Performance ReportMerging #9495 will not alter performanceComparing Summary
Footnotes
|
|
GNU testsuite comparison: |
0d7529b to
4c557bf
Compare
|
GNU testsuite comparison: |
|
This is ready for review. I don't intend to work on this branch any more. |
|
I've just seen #9013 (comment) which is also relevant for my PR. I'll check if |
4c557bf to
9afe842
Compare
|
GNU testsuite comparison: |
9afe842 to
af3957e
Compare
|
GNU testsuite comparison: |
|
The PR is ready for review. |
af3957e to
197203c
Compare
|
GNU testsuite comparison: |
197203c to
8ae82a8
Compare
|
GNU testsuite comparison: |
8ae82a8 to
11a9c80
Compare
|
GNU testsuite comparison: |
Forking creates a new PID and it not compatible with GNU coreutils implementation. - use exec instead of forking - add test verifying that execvp is used Fixes uutils#9066 Signed-off-by: Etienne Cordonnier <[email protected]>
11a9c80 to
7963769
Compare
|
GNU testsuite comparison: |
forking creates a new PID and it not compatible with GNU coreutils implementation.
Command::exec()instead ofCommand::spawn()which forksFixes #9066