summaryrefslogtreecommitdiffstats
path: root/gdbstub.c
diff options
context:
space:
mode:
authorPavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru>2014-09-10 18:34:14 +0400
committerPaolo Bonzini <pbonzini@redhat.com>2014-09-11 12:20:33 +0200
commit462efe9e530e22b1b60aaf01716e1423cd94302c (patch)
tree1a807466d89495a97c7aebc84bf5011c0a6b4005 /gdbstub.c
parenta28fe7e3f6dbacfddc70c8fa773466f4a17d92e3 (diff)
downloadhqemu-462efe9e530e22b1b60aaf01716e1423cd94302c.zip
hqemu-462efe9e530e22b1b60aaf01716e1423cd94302c.tar.gz
gdbstub: init mon_chr through qemu_chr_alloc
This patch initializes monitor for gdbstub with the qemu_chr_alloc function instead of just allocating the memory. Initialization function call is required, because it also creates chr_write_lock mutex, which is used when writing to this character device. Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru> Cc: qemu-stable@nongnu.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'gdbstub.c')
-rw-r--r--gdbstub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbstub.c b/gdbstub.c
index 8afe0b7..71aaa23 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -1707,7 +1707,7 @@ int gdbserver_start(const char *device)
qemu_add_vm_change_state_handler(gdb_vm_state_change, NULL);
/* Initialize a monitor terminal for gdb */
- mon_chr = g_malloc0(sizeof(*mon_chr));
+ mon_chr = qemu_chr_alloc();
mon_chr->chr_write = gdb_monitor_write;
monitor_init(mon_chr, 0);
} else {
OpenPOWER on IntegriCloud