mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-22 07:28:36 -07:00
Use glib memory allocation and free functions
qemu_malloc/qemu_free no longer exist after this commit. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
14015304b6
commit
7267c0947d
357 changed files with 1672 additions and 1674 deletions
|
|
@ -213,7 +213,7 @@ static int syborg_int_init(SysBusDevice *dev)
|
|||
syborg_int_writefn, s,
|
||||
DEVICE_NATIVE_ENDIAN);
|
||||
sysbus_init_mmio(dev, 0x1000, iomemtype);
|
||||
s->flags = qemu_mallocz(s->num_irqs * sizeof(syborg_int_flags));
|
||||
s->flags = g_malloc0(s->num_irqs * sizeof(syborg_int_flags));
|
||||
|
||||
register_savevm(&dev->qdev, "syborg_int", -1, 1, syborg_int_save,
|
||||
syborg_int_load, s);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue