summaryrefslogtreecommitdiffstats
path: root/ui/ncurses/nc-scr.c
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2013-10-15 15:51:49 +0800
committerJeremy Kerr <jk@ozlabs.org>2013-11-13 17:31:04 +0800
commit31ae49c6bfaa3cd65969bff7448be0f6385a6255 (patch)
tree7ebd5ba1e2ea8e3632e4b32e5503dbaf0f5dc634 /ui/ncurses/nc-scr.c
parent52bec18801b226b57f53d9f075addd2c07caa3db (diff)
downloadtalos-petitboot-31ae49c6bfaa3cd65969bff7448be0f6385a6255.tar.gz
talos-petitboot-31ae49c6bfaa3cd65969bff7448be0f6385a6255.zip
ui/ncurses: Move general nc init code to cui module
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'ui/ncurses/nc-scr.c')
-rw-r--r--ui/ncurses/nc-scr.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/ui/ncurses/nc-scr.c b/ui/ncurses/nc-scr.c
index 9a3f3df..c6172e1 100644
--- a/ui/ncurses/nc-scr.c
+++ b/ui/ncurses/nc-scr.c
@@ -29,35 +29,6 @@
#include "nc-scr.h"
-void nc_start(void)
-{
- initscr(); /* Initialize ncurses. */
- cbreak(); /* Disable line buffering. */
- noecho(); /* Disable getch() echo. */
- keypad(stdscr, TRUE); /* Enable num keypad keys. */
- nonl(); /* Disable new-line translation. */
- intrflush(stdscr, FALSE); /* Disable interrupt flush. */
- curs_set(0); /* Make cursor invisible */
- nodelay(stdscr, TRUE); /* Enable non-blocking getch() */
-
- /* We may be operating with an incorrect $TERM type; in this case
- * the keymappings will be slightly broken. We want at least
- * backspace to work though, so we'll define both DEL and ^H to
- * map to backspace */
- define_key("\x7f", KEY_BACKSPACE);
- define_key("\x08", KEY_BACKSPACE);
-
- while (getch() != ERR) /* flush stdin */
- (void)0;
-}
-
-void nc_atexit(void)
-{
- clear();
- refresh();
- endwin();
-}
-
static void nc_scr_status_clear(struct nc_scr *scr)
{
mvwhline(scr->main_ncw, LINES - nc_scr_pos_status, 0, ' ', COLS);
OpenPOWER on IntegriCloud