diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2010-02-11 00:29:55 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-02-19 15:18:16 -0600 |
commit | b473df6e6a95fac7b58dc2282c0388e370c2fd70 (patch) | |
tree | e2427a77ba85c5a0b9aa9acf17f7f9f7c58d5d01 | |
parent | 9edf5051f331d183056293860ef4a20ed5abf13b (diff) |
use lazy initialization for display_state
Ensure initialization of a dumb display, if needed, by making
all accesses go through get_displaystate.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | vl.c | 29 |
1 files changed, 15 insertions, 14 deletions
@@ -2585,6 +2585,16 @@ struct DisplayAllocator default_allocator = { defaultallocator_free_displaysurface }; +/* dumb display */ + +static void dumb_display_init(void) +{ + DisplayState *ds = qemu_mallocz(sizeof(DisplayState)); + ds->allocator = &default_allocator; + ds->surface = qemu_create_displaysurface(ds, 640, 480); + register_displaystate(ds); +} + void register_displaystate(DisplayState *ds) { DisplayState **s; @@ -2597,6 +2607,9 @@ void register_displaystate(DisplayState *ds) DisplayState *get_displaystate(void) { + if (!display_state) { + dumb_display_init(); + } return display_state; } @@ -2606,16 +2619,6 @@ DisplayAllocator *register_displayallocator(DisplayState *ds, DisplayAllocator * return ds->allocator; } -/* dumb display */ - -static void dumb_display_init(void) -{ - DisplayState *ds = qemu_mallocz(sizeof(DisplayState)); - ds->allocator = &default_allocator; - ds->surface = qemu_create_displaysurface(ds, 640, 480); - register_displaystate(ds); -} - /***********************************************************/ /* I/O handling */ @@ -5899,10 +5902,8 @@ int main(int argc, char **argv, char **envp) net_check_clients(); - if (!display_state) - dumb_display_init(); /* just use the first displaystate for the moment */ - ds = display_state; + ds = get_displaystate(); if (display_type == DT_DEFAULT) { #if defined(CONFIG_SDL) || defined(CONFIG_COCOA) @@ -5960,7 +5961,7 @@ int main(int argc, char **argv, char **envp) qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock)); } - text_consoles_set_display(display_state); + text_consoles_set_display(ds); if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0) exit(1); |