aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-29 23:14:37 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-29 23:14:37 +0000
commita34b8a4d305544aaeb6fa3b3576f4fd8a582b082 (patch)
tree4cadc331258618a778059971e654e1d8a7210cb7
parent7a1ddf20f343b3dc08e7a413e901d78681641518 (diff)
downloadbusybox-w32-a34b8a4d305544aaeb6fa3b3576f4fd8a582b082.tar.gz
busybox-w32-a34b8a4d305544aaeb6fa3b3576f4fd8a582b082.tar.bz2
busybox-w32-a34b8a4d305544aaeb6fa3b3576f4fd8a582b082.zip
init: O_NONBLOCK needs more thought. reverted for now
-rw-r--r--init/init.c5
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");