diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 18ccc1329..5f8c8ea19 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -10821,7 +10821,8 @@ preadfd(void) | |||
10821 | again: | 10821 | again: |
10822 | /* For shell, LI_INTERRUPTIBLE is set: | 10822 | /* For shell, LI_INTERRUPTIBLE is set: |
10823 | * read_line_input will abort on either | 10823 | * read_line_input will abort on either |
10824 | * getting EINTR in poll(), or if it sees bb_got_signal != 0 | 10824 | * getting EINTR in poll() and bb_got_signal became != 0, |
10825 | * or if it sees bb_got_signal != 0 | ||
10825 | * (IOW: if signal arrives before poll() is reached). | 10826 | * (IOW: if signal arrives before poll() is reached). |
10826 | * Interactive testcases: | 10827 | * Interactive testcases: |
10827 | * (while kill -INT $$; do sleep 1; done) & | 10828 | * (while kill -INT $$; do sleep 1; done) & |