qga: add guest-set-time command

Signed-off-by: Lei Li <lilei@linux.vnet.ibm.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>

*added stub for w32

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
This commit is contained in:
Lei Li 2013-03-05 17:39:12 +08:00 committed by Michael Roth
parent 6912e6a94c
commit a1bca57f75
3 changed files with 86 additions and 0 deletions

View file

@ -284,6 +284,11 @@ int64_t qmp_guest_get_time(Error **errp)
return -1;
}
void qmp_guest_set_time(int64_t time_ns, Error **errp)
{
error_set(errp, QERR_UNSUPPORTED);
}
/* register init/cleanup routines for stateful command groups */
void ga_command_state_init(GAState *s, GACommandState *cs)
{