search for: readline_start

Displaying 1 result from an estimated 1 matches for "readline_start".

2008 Feb 27
0
PATCH: Make QEMU send logs to stderr
.../* if(keycode&0x80) diff -r 2a8eaba24bf0 tools/ioemu/monitor.c --- a/tools/ioemu/monitor.c Tue Feb 26 15:11:51 2008 +0000 +++ b/tools/ioemu/monitor.c Wed Feb 27 15:26:53 2008 -0500 @@ -2520,7 +2520,7 @@ static void monitor_handle_command1(void static void monitor_start_input(void) { - readline_start("(HVMXen) ", 0, monitor_handle_command1, NULL); + readline_start("(qemu) ", 0, monitor_handle_command1, NULL); } static void term_event(void *opaque, int event) diff -r 2a8eaba24bf0 tools/ioemu/vl.c --- a/tools/ioemu/vl.c Tue Feb 26 15:11:51 2008 +0000 +++ b/tools/ioemu/v...