Date: Fri, 23 Apr 2010 01:34:01 +0000 (UTC) From: Neel Natu <neel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r207089 - head/sys/mips/mips Message-ID: <201004230134.o3N1Y1Ko051988@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: neel Date: Fri Apr 23 01:34:01 2010 New Revision: 207089 URL: http://svn.freebsd.org/changeset/base/207089 Log: Fix compilation error. tick.c:298:5: error: "KDTRACE_HOOKS" is not defined Modified: head/sys/mips/mips/tick.c Modified: head/sys/mips/mips/tick.c ============================================================================== --- head/sys/mips/mips/tick.c Fri Apr 23 01:22:48 2010 (r207088) +++ head/sys/mips/mips/tick.c Fri Apr 23 01:34:01 2010 (r207089) @@ -295,7 +295,7 @@ clock_intr(void *arg) */ if (delta > cycles_per_hz) delta = cycles_per_hz; -#if KDTRACE_HOOKS +#ifdef KDTRACE_HOOKS /* * If the DTrace hooks are configured and a callback function * has been registered, then call it to process the high speed
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004230134.o3N1Y1Ko051988>