~ubuntu-bugs-auftrags-killer/qemu/proper-error-characters

« back to all changes in this revision

Viewing changes to qemu-char.h

  • Committer: aliguori
  • Date: 2009-03-05 23:01:47 UTC
  • Revision ID: git-v1:2724b1806a63d66148cea62e1fe1cae3b417bc7e
monitor: Improve mux'ed console experience (Jan Kiszka)

Up to now, you never really knew if you already switched the console
after pressing CTRL-A C or if you mistyped it again. This patch
clarifies the situation by providing a prompt in a new line and
injecting a linebreak when switching away again. For this purpose, the
two events CHR_EVENT_MUX_IN and CHR_EVENT_MUX_OUT are introduced and
distributed on focus switches.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6716 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
/* character device */
8
8
 
9
 
#define CHR_EVENT_BREAK 0 /* serial break char */
10
 
#define CHR_EVENT_FOCUS 1 /* focus to this terminal (modal input needed) */
11
 
#define CHR_EVENT_RESET 2 /* new connection established */
 
9
#define CHR_EVENT_BREAK   0 /* serial break char */
 
10
#define CHR_EVENT_FOCUS   1 /* focus to this terminal (modal input needed) */
 
11
#define CHR_EVENT_RESET   2 /* new connection established */
 
12
#define CHR_EVENT_MUX_IN  3 /* mux-focus was set to this terminal */
 
13
#define CHR_EVENT_MUX_OUT 4 /* mux-focus will move on */
12
14
 
13
15
 
14
16
#define CHR_IOCTL_SERIAL_SET_PARAMS   1