diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2013-05-21 12:43:36 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2013-06-24 12:52:50 +0800 |
commit | 293fca73b2fe077e7780c1a42216a3db41a6e737 (patch) | |
tree | 98001a1496253693c7da5a1a05ce06c421fdbe04 /ui/ncurses/generic-main.c | |
parent | 2723662cabd4d34d4155ab5d6668c591a20a086b (diff) | |
download | talos-petitboot-293fca73b2fe077e7780c1a42216a3db41a6e737.tar.gz talos-petitboot-293fca73b2fe077e7780c1a42216a3db41a6e737.zip |
ui: implement timers with waitsets
A temporary change to the timers; we'll eventually remove these from the
ui code.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'ui/ncurses/generic-main.c')
-rw-r--r-- | ui/ncurses/generic-main.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/ncurses/generic-main.c b/ui/ncurses/generic-main.c index 365034c..560e3e5 100644 --- a/ui/ncurses/generic-main.c +++ b/ui/ncurses/generic-main.c @@ -180,10 +180,6 @@ static void sig_handler(int signum) DBGS("%d\n", signum); switch (signum) { - case SIGALRM: - if (pb.cui) - ui_timer_sigalrm(&pb.cui->timer); - break; case SIGWINCH: if (pb.cui) cui_resize(pb.cui); |