summaryrefslogtreecommitdiff
path: root/qemu-user.c
AgeCommit message (Collapse)AuthorFilesLines
2012-10-30fdsets: use weak aliases instead of qemu-tool.c/qemu-user.cPaolo Bonzini1-20/+0
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2012-08-15block: Enable qemu_open/close to work with fd setsCorey Bryant1-0/+20
When qemu_open is passed a filename of the "/dev/fdset/nnn" format (where nnn is the fdset ID), an fd with matching access mode flags will be searched for within the specified monitor fd set. If the fd is found, a dup of the fd will be returned from qemu_open. Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2012-03-13qom: Add QOM support to user emulatorsAndreas Färber1-0/+37
Link the Object base class and the module infrastructure for class registration. Introduce $(universal-obj-y) for objects that are more common than $(common-obj-y), so that those only get built once. Call QOM module init for type registration. Signed-off-by: Andreas Färber <afaerber@suse.de> Cc: Anthony Liguori <anthony@codemonkey.ws> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>