Commit 0b69f6f7 authored by Marc-André Lureau's avatar Marc-André Lureau Committed by Markus Armbruster
Browse files

qapi: remove qmp_unregister_command()



This command is no longer needed, the schema has compile-time
configuration conditions.

Signed-off-by: default avatarMarc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: default avatarMarkus Armbruster <armbru@redhat.com>
Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
Message-Id: <20190214152251.2073-16-armbru@redhat.com>
parent 25a9d6ca
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -39,7 +39,6 @@ typedef QTAILQ_HEAD(QmpCommandList, QmpCommand) QmpCommandList;

void qmp_register_command(QmpCommandList *cmds, const char *name,
                          QmpCommandFunc *fn, QmpCommandOptions options);
void qmp_unregister_command(QmpCommandList *cmds, const char *name);
QmpCommand *qmp_find_command(QmpCommandList *cmds, const char *name);
void qmp_disable_command(QmpCommandList *cmds, const char *name);
void qmp_enable_command(QmpCommandList *cmds, const char *name);
+0 −8
Original line number Diff line number Diff line
@@ -27,14 +27,6 @@ void qmp_register_command(QmpCommandList *cmds, const char *name,
    QTAILQ_INSERT_TAIL(cmds, cmd, node);
}

void qmp_unregister_command(QmpCommandList *cmds, const char *name)
{
    QmpCommand *cmd = qmp_find_command(cmds, name);

    QTAILQ_REMOVE(cmds, cmd, node);
    g_free(cmd);
}

QmpCommand *qmp_find_command(QmpCommandList *cmds, const char *name)
{
    QmpCommand *cmd;