diff options
author | Corey Bryant <coreyb@linux.vnet.ibm.com> | 2012-06-22 14:36:09 -0400 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-07-13 13:46:55 -0300 |
commit | 208c9d1b7c23e112d2fb83660fa23f2918c4c15b (patch) | |
tree | a4b3064fae5835f3ef763d1ad98f3be9158dc323 /hmp.c | |
parent | 94c3db85b4cc1d4e078859834a761bcc9d988780 (diff) | |
download | qemu-208c9d1b7c23e112d2fb83660fa23f2918c4c15b.tar.gz qemu-208c9d1b7c23e112d2fb83660fa23f2918c4c15b.tar.bz2 qemu-208c9d1b7c23e112d2fb83660fa23f2918c4c15b.zip |
qapi: Convert getfd and closefd
Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'hmp.c')
-rw-r--r-- | hmp.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1002,3 +1002,21 @@ void hmp_netdev_del(Monitor *mon, const QDict *qdict) qmp_netdev_del(id, &err); hmp_handle_error(mon, &err); } + +void hmp_getfd(Monitor *mon, const QDict *qdict) +{ + const char *fdname = qdict_get_str(qdict, "fdname"); + Error *errp = NULL; + + qmp_getfd(fdname, &errp); + hmp_handle_error(mon, &errp); +} + +void hmp_closefd(Monitor *mon, const QDict *qdict) +{ + const char *fdname = qdict_get_str(qdict, "fdname"); + Error *errp = NULL; + + qmp_closefd(fdname, &errp); + hmp_handle_error(mon, &errp); +} |