Treat a job as suspended when any child process suspends#144
Merged
Conversation
magicant
force-pushed
the
any-process-suspend
branch
2 times, most recently
from
March 27, 2025 14:46
fec1fec to
ecdecbc
Compare
POSIX.1-2024 requires that the shell treat a job as suspended when any child process comprising the job suspends. Previously, the shell considered a job to be suspended only when all child processes comprising the job suspended. This change makes the shell compliant with the standard. Fixes #130
magicant
force-pushed
the
any-process-suspend
branch
from
March 27, 2025 15:09
ecdecbc to
ab61acd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
POSIX.1-2024 requires that the shell treat a job as suspended when any child process comprising the job suspends. Previously, the shell considered a job to be suspended only when all child processes comprising the job suspended. This change makes the shell compliant with the standard.
Fixes #130
This pull request includes various changes related to job control behavior in the shell, documentation updates, and test adjustments. The most important changes include modifications to how the shell handles suspended jobs, updates to documentation in multiple languages, and the addition of new test cases.
Changes to job control behavior:
job.c).Documentation updates:
NEWSfile to reflect the change in job suspension behavior.NEWS.jafile with the corresponding change.doc/job.txt,doc/ja/job.txt). [1] [2]Test adjustments:
tests/job-y.tst).tests/POSIX.