From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KgyPY-00055t-KL for qemu-devel@nongnu.org; Sat, 20 Sep 2008 05:05:52 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KgyPX-00055H-2v for qemu-devel@nongnu.org; Sat, 20 Sep 2008 05:05:51 -0400 Received: from [199.232.76.173] (port=52956 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KgyPW-00054p-ND for qemu-devel@nongnu.org; Sat, 20 Sep 2008 05:05:50 -0400 Received: from savannah.gnu.org ([199.232.41.3]:50341 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 1KgyPW-0001e4-T3 for qemu-devel@nongnu.org; Sat, 20 Sep 2008 05:05:50 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KgyPV-00061d-Mb for qemu-devel@nongnu.org; Sat, 20 Sep 2008 09:05:49 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KgyPV-00061Z-D9 for qemu-devel@nongnu.org; Sat, 20 Sep 2008 09:05:49 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Sat, 20 Sep 2008 09:05:49 +0000 Subject: [Qemu-devel] [5276] Move signal handler prototype back to cpu.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 Revision: 5276 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5276 Author: blueswir1 Date: 2008-09-20 09:05:49 +0000 (Sat, 20 Sep 2008) Log Message: ----------- Move signal handler prototype back to cpu.h Modified Paths: -------------- trunk/target-sparc/cpu.h trunk/target-sparc/exec.h Modified: trunk/target-sparc/cpu.h =================================================================== --- trunk/target-sparc/cpu.h 2008-09-20 08:07:15 UTC (rev 5275) +++ trunk/target-sparc/cpu.h 2008-09-20 09:05:49 UTC (rev 5276) @@ -423,6 +423,7 @@ /* cpu-exec.c */ void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, int is_asi); +int cpu_sparc_signal_handler(int host_signum, void *pinfo, void *puc); #define CPUState CPUSPARCState #define cpu_init cpu_sparc_init Modified: trunk/target-sparc/exec.h =================================================================== --- trunk/target-sparc/exec.h 2008-09-20 08:07:15 UTC (rev 5275) +++ trunk/target-sparc/exec.h 2008-09-20 09:05:49 UTC (rev 5276) @@ -34,7 +34,6 @@ /* cpu-exec.c */ void cpu_loop_exit(void); -int cpu_sparc_signal_handler(int host_signum, void *pinfo, void *puc); /* sun4m.c */ void cpu_check_irqs(CPUSPARCState *env);