From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49304) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0pLz-0003NU-2n for qemu-devel@nongnu.org; Sun, 21 Jul 2013 04:50:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V0pLx-0007Di-Sg for qemu-devel@nongnu.org; Sun, 21 Jul 2013 04:50:54 -0400 Received: from mail-ie0-x22e.google.com ([2607:f8b0:4001:c03::22e]:37988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V0pLx-0007DT-Dj for qemu-devel@nongnu.org; Sun, 21 Jul 2013 04:50:53 -0400 Received: by mail-ie0-f174.google.com with SMTP id 9so12858899iec.33 for ; Sun, 21 Jul 2013 01:50:52 -0700 (PDT) From: Liu Ping Fan Date: Sun, 21 Jul 2013 16:43:00 +0800 Message-Id: <1374396185-10870-4-git-send-email-pingfank@linux.vnet.ibm.com> In-Reply-To: <1374396185-10870-1-git-send-email-pingfank@linux.vnet.ibm.com> References: <1374396185-10870-1-git-send-email-pingfank@linux.vnet.ibm.com> Subject: [Qemu-devel] [RFC 3/8] timer: make timers_state static List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Stefan Hajnoczi , Jan Kiszka , Alex Bligh , Anthony Liguori , Paolo Bonzini Signed-off-by: Liu Ping Fan --- cpus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpus.c b/cpus.c index 61e86a8..4254ca9 100644 --- a/cpus.c +++ b/cpus.c @@ -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) -- 1.8.1.4