diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-05 22:01:59 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-05 22:01:59 +0000 |
commit | 86e94dea5b740dad65446c857f6959eae43e0ba6 (patch) | |
tree | 7870bef3144c93a02c99751d7653d8492c1f2282 /console.c | |
parent | 8f28f3fbbe1116c5f4f11ebf4167a770032e2606 (diff) |
Reinitialize monitor upon reconnect, by Anthony Liguori.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2300 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1086,5 +1086,7 @@ CharDriverState *text_console_init(DisplayState *ds) s->t_attrib = s->t_attrib_default; text_console_resize(s); + qemu_chr_reset(chr); + return chr; } |