mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
qga: add guest-get-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:
parent
39097daf15
commit
6912e6a94c
3 changed files with 35 additions and 0 deletions
|
@ -119,6 +119,22 @@ void qmp_guest_shutdown(bool has_mode, const char *mode, Error **err)
|
|||
/* succeded */
|
||||
}
|
||||
|
||||
int64_t qmp_guest_get_time(Error **errp)
|
||||
{
|
||||
int ret;
|
||||
qemu_timeval tq;
|
||||
int64_t time_ns;
|
||||
|
||||
ret = qemu_gettimeofday(&tq);
|
||||
if (ret < 0) {
|
||||
error_setg_errno(errp, errno, "Failed to get time");
|
||||
return -1;
|
||||
}
|
||||
|
||||
time_ns = tq.tv_sec * 1000000000LL + tq.tv_usec * 1000;
|
||||
return time_ns;
|
||||
}
|
||||
|
||||
typedef struct GuestFileHandle {
|
||||
uint64_t id;
|
||||
FILE *fh;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue