From: Cao jin Date: Fri, 29 Jul 2016 11:05:37 +0000 (+0800) Subject: cpus: rename local variable to meaningful one X-Git-Tag: qemu-xen-4.9.0-rc1~200^2~43 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1d45cea5496fe509f0b66f01b876067e68a5faa0;p=qemu-xen.git cpus: rename local variable to meaningful one The function actually returns monotonic time value in nanosecond, the "ticks" is not suitable. Cc: Paolo Bonzini Cc Peter Crosthwaite Cc: Richard Henderson Signed-off-by: Cao jin Message-Id: <1469790338-28990-3-git-send-email-caoj.fnst@cn.fujitsu.com> Signed-off-by: Paolo Bonzini --- diff --git a/cpus.c b/cpus.c index 84c3520d44..e11caf7ced 100644 --- a/cpus.c +++ b/cpus.c @@ -219,14 +219,14 @@ int64_t cpu_get_ticks(void) static int64_t cpu_get_clock_locked(void) { - int64_t ticks; + int64_t time; - ticks = timers_state.cpu_clock_offset; + time = timers_state.cpu_clock_offset; if (timers_state.cpu_ticks_enabled) { - ticks += get_clock(); + time += get_clock(); } - return ticks; + return time; } /* return the host CPU monotonic timer and handle stop/restart */