From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [6353] Remove assumption about a single graphic console.
Date: Fri, 16 Jan 2009 21:01:48 +0000 [thread overview]
Message-ID: <E1LNvp6-0003Dl-KD@cvs.savannah.gnu.org> (raw)
Revision: 6353
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6353
Author: aliguori
Date: 2009-01-16 21:01:48 +0000 (Fri, 16 Jan 2009)
Log Message:
-----------
Remove assumption about a single graphic console.
This fixes a fault with the jazz_led since it has two graphic consoles.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Modified Paths:
--------------
trunk/console.c
Modified: trunk/console.c
===================================================================
--- trunk/console.c 2009-01-16 20:23:27 UTC (rev 6352)
+++ trunk/console.c 2009-01-16 21:01:48 UTC (rev 6353)
@@ -1190,13 +1190,13 @@
}
}
-static TextConsole *get_graphic_console(void)
+static TextConsole *get_graphic_console(DisplayState *ds)
{
int i;
TextConsole *s;
for (i = 0; i < nb_consoles; i++) {
s = consoles[i];
- if (s->console_type == GRAPHIC_CONSOLE)
+ if (s->console_type == GRAPHIC_CONSOLE && s->ds == ds)
return s;
}
return NULL;
@@ -1394,7 +1394,7 @@
void qemu_console_resize(DisplayState *ds, int width, int height)
{
- TextConsole *s = get_graphic_console();
+ TextConsole *s = get_graphic_console(ds);
s->g_width = width;
s->g_height = height;
if (is_graphic_console()) {
reply other threads:[~2009-01-16 21:01 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1LNvp6-0003Dl-KD@cvs.savannah.gnu.org \
--to=anthony@codemonkey.ws \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).