diff options
| author | Richard M. Stallman | 1994-01-09 12:16:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-09 12:16:26 +0000 |
| commit | a0e4d3f399b62984ac75b7403ddfbea34e67b46e (patch) | |
| tree | 90efc0ff6284e8ce3041d0d5c365eb638e11f33f /src/process.c | |
| parent | bb4bc8e2ed21c6f462c23c09ce680f1588b080c4 (diff) | |
| download | emacs-a0e4d3f399b62984ac75b7403ddfbea34e67b46e.tar.gz emacs-a0e4d3f399b62984ac75b7403ddfbea34e67b46e.zip | |
Comment changes.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index ae2350a85f8..b8fac56ae5a 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -133,8 +133,8 @@ extern char *sys_errlist[]; | |||
| 133 | #ifndef BSD4_1 | 133 | #ifndef BSD4_1 |
| 134 | #ifndef LINUX | 134 | #ifndef LINUX |
| 135 | extern char *sys_siglist[]; | 135 | extern char *sys_siglist[]; |
| 136 | #endif | 136 | #endif /* not LINUX */ |
| 137 | #else | 137 | #else /* BSD4_1 */ |
| 138 | char *sys_siglist[] = | 138 | char *sys_siglist[] = |
| 139 | { | 139 | { |
| 140 | "bum signal!!", | 140 | "bum signal!!", |
| @@ -1791,7 +1791,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 1791 | if (select (MAXDESC, &Atemp, 0, 0, &timeout) <= 0) | 1791 | if (select (MAXDESC, &Atemp, 0, 0, &timeout) <= 0) |
| 1792 | { | 1792 | { |
| 1793 | /* It's okay for us to do this and then continue with | 1793 | /* It's okay for us to do this and then continue with |
| 1794 | the loop, since timeout has already been zeroed out. */ | 1794 | the loop, since timeout has already been zeroed out. */ |
| 1795 | clear_waiting_for_input (); | 1795 | clear_waiting_for_input (); |
| 1796 | status_notify (); | 1796 | status_notify (); |
| 1797 | } | 1797 | } |
| @@ -1869,7 +1869,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 1869 | the ptc file descriptor is automatically closed, | 1869 | the ptc file descriptor is automatically closed, |
| 1870 | yielding EBADF here or at select() call above. | 1870 | yielding EBADF here or at select() call above. |
| 1871 | So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF | 1871 | So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF |
| 1872 | in m-ibmrt-aix.h), and here we just ignore the select error. | 1872 | in m/ibmrt-aix.h), and here we just ignore the select error. |
| 1873 | Cleanup occurs c/o status_notify after SIGCLD. */ | 1873 | Cleanup occurs c/o status_notify after SIGCLD. */ |
| 1874 | FD_ZERO (&Available); /* Cannot depend on values returned */ | 1874 | FD_ZERO (&Available); /* Cannot depend on values returned */ |
| 1875 | #else | 1875 | #else |