diff options
author | Liu Ping Fan | 2013-07-21 10:43:00 +0200 |
---|---|---|
committer | Michael Tokarev | 2013-07-27 09:22:53 +0200 |
commit | d9cd4007d5c7e877a006392eeafb2291f06d6685 (patch) | |
tree | 939e290f2b6ec6fe00a327c79dbbf95eb967aaf5 | |
parent | aes: Remove unused code (NDEBUG, u16) (diff) | |
download | qemu-d9cd4007d5c7e877a006392eeafb2291f06d6685.tar.gz qemu-d9cd4007d5c7e877a006392eeafb2291f06d6685.tar.xz qemu-d9cd4007d5c7e877a006392eeafb2291f06d6685.zip |
timer: make timers_state static
Signed-off-by: Liu Ping Fan <pingfank@linux.vnet.ibm.com>
Reviewed-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | cpus.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ typedef struct TimersState { int64_t dummy; } TimersState; -TimersState timers_state; +static TimersState timers_state; /* Return the virtual CPU time, based on the instruction counter. */ int64_t cpu_get_icount(void) |