svn commit: r207089 - head/sys/mips/mips

Neel Natu neel at FreeBSD.org
Fri Apr 23 01:34:01 UTC 2010


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


More information about the svn-src-head mailing list