diff mbox

[8/9] monitor: Convert do_getfd() to QObject

Message ID 1255706631-3742-9-git-send-email-lcapitulino@redhat.com
State New
Headers show

Commit Message

Luiz Capitulino Oct. 16, 2009, 3:23 p.m. UTC
Note that errors are not being converted yet.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
---
 monitor.c       |    2 +-
 qemu-monitor.hx |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/monitor.c b/monitor.c
index a0d371d..f35b55f 100644
--- a/monitor.c
+++ b/monitor.c
@@ -1848,7 +1848,7 @@  static void do_inject_mce(Monitor *mon, const QDict *qdict)
 }
 #endif
 
-static void do_getfd(Monitor *mon, const QDict *qdict)
+static void do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
 {
     const char *fdname = qdict_get_str(qdict, "fdname");
     mon_fd_t *monfd;
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 05b4534..cc4487e 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -1013,7 +1013,8 @@  ETEXI
         .args_type  = "fdname:s",
         .params     = "getfd name",
         .help       = "receive a file descriptor via SCM rights and assign it a name",
-        .mhandler.cmd = do_getfd,
+        .user_print = monitor_user_noop,
+        .mhandler.cmd_new = do_getfd,
     },
 
 STEXI