diff options
author | Rob Landley <rob@landley.net> | 2018-10-21 13:05:22 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-10-21 13:05:22 -0500 |
commit | 3e0b077ec236aa26bfeb290f3cd7973ec3fbcb7d (patch) | |
tree | 0fd8275af029861fa62a9316bef316c12f71ae0c /toys/pending | |
parent | 74f22a7d5cb6ed03f00c261fb4e28b411f1c4c0a (diff) | |
download | toybox-3e0b077ec236aa26bfeb290f3cd7973ec3fbcb7d.tar.gz |
Move start_redraw() to lib/ and have ps.c (top) use it.
Diffstat (limited to 'toys/pending')
-rw-r--r-- | toys/pending/watch.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/toys/pending/watch.c b/toys/pending/watch.c index f360ac7c..41fb020e 100644 --- a/toys/pending/watch.c +++ b/toys/pending/watch.c @@ -32,23 +32,6 @@ GLOBALS( pid_t pid, oldpid; ) -void start_redraw(unsigned *width, unsigned *height) -{ - // If never signaled, do raw mode setup. - if (!toys.signal) { - *width = 80; - *height = 25; - set_terminal(0, 1, 0, 0); - sigatexit(tty_sigreset); - xsignal(SIGWINCH, generic_signal); - } - if (toys.signal != -1) { - toys.signal = -1; - terminal_probesize(width, height); - } - xprintf("\033[H\033[J"); -} - // When a child process exits, stop tracking them. Handle errors for -be void watch_child(int sig) { |