buildrootschalter/package/busybox/1.22.1/0002-busybox-1.22.1-ash.patch
Gustavo Zacarias 62ca653d55 busybox: bump 1.22 series to 1.22.1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-01-20 22:20:31 +01:00

21 lines
423 B
Diff

--- busybox-1.22.1/procps/top.c
+++ busybox-1.22.1-ash/procps/top.c
@@ -917,17 +917,12 @@ enum {
#if ENABLE_FEATURE_USE_TERMIOS
static unsigned handle_input(unsigned scan_mask, unsigned interval)
{
- struct pollfd pfd[1];
-
if (option_mask32 & OPT_EOF) {
/* EOF on stdin ("top </dev/null") */
sleep(interval);
return scan_mask;
}
- pfd[0].fd = 0;
- pfd[0].events = POLLIN;
-
while (1) {
int32_t c;