diff options
Diffstat (limited to 'init')
| -rw-r--r-- | init/init.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/init/init.c b/init/init.c index ef387819c..1caf45b8d 100644 --- a/init/init.c +++ b/init/init.c | |||
| @@ -209,8 +209,9 @@ static void console_init(void) | |||
| 209 | /* Make sure fd 0,1,2 are not closed | 209 | /* Make sure fd 0,1,2 are not closed |
| 210 | * (so that they won't be used by future opens) */ | 210 | * (so that they won't be used by future opens) */ |
| 211 | bb_sanitize_stdio(); | 211 | bb_sanitize_stdio(); |
| 212 | /* Make sure init can't be blocked by writing to stderr */ | 212 | // Users report problems |
| 213 | fcntl(STDERR_FILENO, F_SETFL, fcntl(STDERR_FILENO, F_GETFL) | O_NONBLOCK); | 213 | // /* Make sure init can't be blocked by writing to stderr */ |
| 214 | // fcntl(STDERR_FILENO, F_SETFL, fcntl(STDERR_FILENO, F_GETFL) | O_NONBLOCK); | ||
| 214 | } | 215 | } |
| 215 | 216 | ||
| 216 | s = getenv("TERM"); | 217 | s = getenv("TERM"); |
