diff options
| author | Andreas Schwab | 2008-10-07 08:06:10 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2008-10-07 08:06:10 +0000 |
| commit | 766f52ec4997045886bd3e711b755128ed4a7c61 (patch) | |
| tree | 6bef5898e3aa5aa0ac725aa7118253a65f760425 /src | |
| parent | ef874e3d242f68c86f8a6bf0028a8669efdc4ff4 (diff) | |
| download | emacs-766f52ec4997045886bd3e711b755128ed4a7c61.tar.gz emacs-766f52ec4997045886bd3e711b755128ed4a7c61.zip | |
Add comment for last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sysdep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 96ab3996953..0a2e2ed1614 100644 --- a/src/sysdep.c +++ b/src/sysdep.c | |||
| @@ -2135,6 +2135,8 @@ sys_signal (int signal_number, signal_handler_t action) | |||
| 2135 | When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll | 2135 | When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll |
| 2136 | for pending input so we need long-running syscalls to be interrupted | 2136 | for pending input so we need long-running syscalls to be interrupted |
| 2137 | after a signal that sets the interrupt_input_pending flag. */ | 2137 | after a signal that sets the interrupt_input_pending flag. */ |
| 2138 | /* Non-interactive keyboard input goes through stdio, where we always | ||
| 2139 | want restartable system calls. */ | ||
| 2138 | # if defined (BROKEN_SA_RESTART) || defined(SYNC_INPUT) | 2140 | # if defined (BROKEN_SA_RESTART) || defined(SYNC_INPUT) |
| 2139 | if (noninteractive) | 2141 | if (noninteractive) |
| 2140 | # endif | 2142 | # endif |