From 474ad834d2c2637a7e5df527f8a89e2792b572ef Mon Sep 17 00:00:00 2001 From: pbrook Date: Wed, 29 Oct 2008 14:37:18 +0000 Subject: [PATCH] Use qemu_gettimeofday. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5571 c046a42c-6fe2-441c-8c8c-71466251a162 --- qemu-tool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-tool.c b/qemu-tool.c index 87cc2949b2..74d4b4f80e 100644 --- a/qemu-tool.c +++ b/qemu-tool.c @@ -82,6 +82,6 @@ int qemu_set_fd_handler2(int fd, int64_t qemu_get_clock(QEMUClock *clock) { struct timeval tv; - gettimeofday(&tv, NULL); + qemu_gettimeofday(&tv); return (tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000)) / 1000000; } -- 2.11.0