Statistics
| Branch: | Revision:

root / hw / qdev-core.h @ bf3bc4c4

History | View | Annotate | Download (6.3 kB)

# Date Author Comment
394e1bb7 12/06/2012 10:17 am Eduardo Habkost

Create qemu-types.h for struct typedefs

Instead of keeping all those struct typedefs in qemu-common.h, move it
to a header that can be safely included by other headers, containing
only the struct typedefs and not pulling in other dependencies.

Also, move some of the qdev-core.h typedefs to the new file, too, so...

64b625f4 11/26/2012 09:41 pm Paolo Bonzini

qdev: simplify (de)allocation of buses

All conditional deallocation can now be done with object_delete.
Remove the @qom_allocated and @glib_allocated fields; replace the latter
with a direct assignment of the @free function pointer.

Signed-off-by: Paolo Bonzini <>...

074a86fc 11/15/2012 03:18 am Anthony Liguori

qdev: Split up header so it can be used in cpu.h

Header file dependency is a frickin' nightmare right now. cpu.h tends
to get included in our 'include everything' header files but qdev also
needs to include those headers mainly for qdev-properties since it knows...