From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JweAB-0005ZI-4R for qemu-devel@nongnu.org; Thu, 15 May 2008 10:10:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JweA9-0005Xk-FV for qemu-devel@nongnu.org; Thu, 15 May 2008 10:10:30 -0400 Received: from [199.232.76.173] (port=37557 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JweA9-0005XY-36 for qemu-devel@nongnu.org; Thu, 15 May 2008 10:10:29 -0400 Received: from mx1.redhat.com ([66.187.233.31]:35975) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JweA8-0003DO-Fx for qemu-devel@nongnu.org; Thu, 15 May 2008 10:10:28 -0400 From: Glauber Costa Date: Thu, 15 May 2008 11:09:28 -0300 Message-Id: <12108606053604-git-send-email-gcosta@redhat.com> In-Reply-To: <12108606012733-git-send-email-gcosta@redhat.com> References: <12108605731805-git-send-email-gcosta@redhat.com> <12108605813076-git-send-email-gcosta@redhat.com> <12108605843020-git-send-email-gcosta@redhat.com> <12108605883967-git-send-email-gcosta@redhat.com> <12108605912878-git-send-email-gcosta@redhat.com> <121086059420-git-send-email-gcosta@redhat.com> <12108605981240-git-send-email-gcosta@redhat.com> <12108606012733-git-send-email-gcosta@redhat.com> Subject: [Qemu-devel] [PATCH 08/13] [PATCH] move kqemu externs to kqemu.h Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kvm-devel@lists.sourceforge.net --- cpu-all.h | 5 ----- kqemu.h | 6 ++++++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/cpu-all.h b/cpu-all.h index 7e77f76..5336a29 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -1053,14 +1053,9 @@ static inline int64_t profile_getclock(void) return cpu_get_real_ticks(); } -extern int64_t kqemu_time, kqemu_time_start; extern int64_t qemu_time, qemu_time_start; extern int64_t tlb_flush_time; -extern int64_t kqemu_exec_count; extern int64_t dev_time; -extern int64_t kqemu_ret_int_count; -extern int64_t kqemu_ret_excp_count; -extern int64_t kqemu_ret_intr_count; extern int64_t dyngen_tb_count1; extern int64_t dyngen_tb_count; diff --git a/kqemu.h b/kqemu.h index 7b43057..88156c1 100644 --- a/kqemu.h +++ b/kqemu.h @@ -26,6 +26,12 @@ #define KQEMU_VERSION 0x010300 +extern int64_t kqemu_time, kqemu_time_start; +extern int64_t kqemu_exec_count; +extern int64_t kqemu_ret_int_count; +extern int64_t kqemu_ret_excp_count; +extern int64_t kqemu_ret_intr_count; + struct kqemu_segment_cache { uint32_t selector; unsigned long base; -- 1.5.5