diff options
author | Gerd Hoffmann | 2012-11-13 14:51:41 +0100 |
---|---|---|
committer | Gerd Hoffmann | 2013-03-18 10:21:58 +0100 |
commit | 7c20b4a374d0016e3fce005690fb428354a56621 (patch) | |
tree | e2cd1af910a6e226a1cc8d4d3f6d933a02e58c58 /trace-events | |
parent | s390: Fix cpu refactoring fallout. (diff) | |
download | qemu-7c20b4a374d0016e3fce005690fb428354a56621.tar.gz qemu-7c20b4a374d0016e3fce005690fb428354a56621.tar.xz qemu-7c20b4a374d0016e3fce005690fb428354a56621.zip |
console: fix displaychangelisteners interface
Split callbacks into separate Ops struct. Pass DisplayChangeListener
pointer as first argument to all callbacks. Uninline a bunch of
display functions and move them from console.h to console.c
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/trace-events b/trace-events index cd73b7f3ea..cbe7ef2876 100644 --- a/trace-events +++ b/trace-events @@ -960,6 +960,8 @@ dma_map_wait(void *dbs) "dbs=%p" # console.h displaysurface_free(void *display_state, void *display_surface) "state=%p surface=%p" displaysurface_resize(void *display_state, void *display_surface, int width, int height) "state=%p surface=%p %dx%d" +displaychangelistener_register(void *dcl, const char *name) "%p [ %s ]" +displaychangelistener_unregister(void *dcl, const char *name) "%p [ %s ]" # vga.c ppm_save(const char *filename, void *display_surface) "%s surface=%p" |