From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KaJSk-00046m-7Q for qemu-devel@nongnu.org; Mon, 01 Sep 2008 20:09:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KaJSj-00045w-OB for qemu-devel@nongnu.org; Mon, 01 Sep 2008 20:09:37 -0400 Received: from [199.232.76.173] (port=51072 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KaJSj-00045k-J3 for qemu-devel@nongnu.org; Mon, 01 Sep 2008 20:09:37 -0400 Received: from savannah.gnu.org ([199.232.41.3]:49849 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KaJSj-00030t-A8 for qemu-devel@nongnu.org; Mon, 01 Sep 2008 20:09:37 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KaJSi-0004Ux-JP for qemu-devel@nongnu.org; Tue, 02 Sep 2008 00:09:36 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KaJSh-0004UU-UC for qemu-devel@nongnu.org; Tue, 02 Sep 2008 00:09:36 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Tue, 02 Sep 2008 00:09:36 +0000 Subject: [Qemu-devel] [5131] Fix call_pal() prototype for alpha system emulation 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 Revision: 5131 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5131 Author: aurel32 Date: 2008-09-02 00:09:35 +0000 (Tue, 02 Sep 2008) Log Message: ----------- Fix call_pal() prototype for alpha system emulation (Herv?\195?\169 Poussineau) Modified Paths: -------------- trunk/target-alpha/cpu.h Modified: trunk/target-alpha/cpu.h =================================================================== --- trunk/target-alpha/cpu.h 2008-09-02 00:09:25 UTC (rev 5130) +++ trunk/target-alpha/cpu.h 2008-09-02 00:09:35 UTC (rev 5131) @@ -411,7 +411,11 @@ int cpu_alpha_mtpr (CPUState *env, int iprn, uint64_t val, uint64_t *oldvalp); void cpu_loop_exit (void); void pal_init (CPUState *env); +#if !defined (CONFIG_USER_ONLY) +void call_pal (CPUState *env); +#else void call_pal (CPUState *env, int palcode); +#endif #define CPU_PC_FROM_TB(env, tb) env->pc = tb->pc