summaryrefslogtreecommitdiff
path: root/vl.c
diff options
context:
space:
mode:
authorHitoshi Mitake <h.mitake@gmail.com>2012-09-15 01:15:41 +0900
committerStefan Hajnoczi <stefanha@gmail.com>2012-09-23 07:11:28 +0100
commit995ee2bf469de6bbe5ce133ec853392b2a4ce34c (patch)
treeb52719e4af7b29724889cba00ce1d5ff3d8bce63 /vl.c
parentd8f8a860f2403533fc73f541122c65a34b21e42f (diff)
downloadqemu-995ee2bf469de6bbe5ce133ec853392b2a4ce34c.tar.gz
curses: don't initialize curses when qemu is daemonized
Current qemu initializes curses even if -daemonize option is passed. This cause problem because shell prompt appears without calling endwin(). This patch adds new function, is_daemonized(), to OS dependent code. With this function, curses_display_init() can check that qemu is daemonized or not. If daemonized, curses_display_init() isn't called and the problem is avoided. Of course, -daemonize && -curses doesn't make sense. Users shouldn't pass the arguments at the same time. But the problem is very painful because Ctrl-C cannot be delivered to the terminal. Cc: Andrzej Zaborowski <balrog@zabor.org> Cc: Stefan Hajnoczi <stefanha@gmail.com> Cc: Anthony Liguori <aliguori@us.ibm.com> Cc: Michael Roth <mdroth@linux.vnet.ibm.com> Signed-off-by: Hitoshi Mitake <h.mitake@gmail.com> Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/vl.c b/vl.c
index 7c577fa544..48049ef0b6 100644
--- a/vl.c
+++ b/vl.c
@@ -3657,7 +3657,9 @@ int main(int argc, char **argv, char **envp)
break;
#if defined(CONFIG_CURSES)
case DT_CURSES:
- curses_display_init(ds, full_screen);
+ if (!is_daemonized()) {
+ curses_display_init(ds, full_screen);
+ }
break;
#endif
#if defined(CONFIG_SDL)