diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/freebsd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/s/freebsd.h b/src/s/freebsd.h index 9a32b9bf57d..ecfa869593f 100644 --- a/src/s/freebsd.h +++ b/src/s/freebsd.h | |||
| @@ -92,3 +92,8 @@ | |||
| 92 | /* Needed to avoid hanging when child process writes an error message | 92 | /* Needed to avoid hanging when child process writes an error message |
| 93 | and exits -- enami tsugutomo <enami@ba2.so-net.or.jp>. */ | 93 | and exits -- enami tsugutomo <enami@ba2.so-net.or.jp>. */ |
| 94 | #define vfork fork | 94 | #define vfork fork |
| 95 | |||
| 96 | /* Don't close pty in process.c to make it as controlling terminal. | ||
| 97 | It is already a controlling terminal of subprocess, because we did | ||
| 98 | ioctl TIOCSCTTY. */ | ||
| 99 | #define DONT_REOPEN_PTY | ||