Date: Thu, 15 Jan 2009 07:48:37 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r187293 - head/sys/mips/mips Message-ID: <200901150748.n0F7mbAY068508@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Thu Jan 15 07:48:37 2009 New Revision: 187293 URL: http://svn.freebsd.org/changeset/base/187293 Log: Reverse order of dumpsys and cpu_idle_wakeup to reduce diffs to p4. Modified: head/sys/mips/mips/machdep.c Modified: head/sys/mips/mips/machdep.c ============================================================================== --- head/sys/mips/mips/machdep.c Thu Jan 15 07:45:40 2009 (r187292) +++ head/sys/mips/mips/machdep.c Thu Jan 15 07:48:37 2009 (r187293) @@ -418,16 +418,16 @@ cpu_idle(int busy) panic("ints disabled in idleproc!"); } -int -cpu_idle_wakeup(int cpu) +void +dumpsys(struct dumperinfo *di __unused) { - return (0); + printf("Kernel dumps not implemented on this architecture\n"); } -void -dumpsys(struct dumperinfo *di __unused) +int +cpu_idle_wakeup(int cpu) { - printf("Kernel dumps not implemented on this architecture\n"); + return (0); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901150748.n0F7mbAY068508>