aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/smp.h
diff options
context:
space:
mode:
authorTor Egge <tegge@FreeBSD.org>1998-03-03 19:44:34 +0000
committerTor Egge <tegge@FreeBSD.org>1998-03-03 19:44:34 +0000
commit221e0c595b9163ca22f0cc22e511e62e2c16d39f (patch)
treefcf2f62030196ce4ab9e2d66dbc142c6e307fa5b /sys/sys/smp.h
parent87ad126763d493917fee2c79c30473c56750db3f (diff)
downloadsrc-221e0c595b9163ca22f0cc22e511e62e2c16d39f.tar.gz
src-221e0c595b9163ca22f0cc22e511e62e2c16d39f.zip
forward_statclock and forward_hardclock are located in mp_machdep.c.
Notes
Notes: svn path=/head/; revision=34017
Diffstat (limited to 'sys/sys/smp.h')
-rw-r--r--sys/sys/smp.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/sys/smp.h b/sys/sys/smp.h
index 7867fcea7a94..08fffbe3f58a 100644
--- a/sys/sys/smp.h
+++ b/sys/sys/smp.h
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id: smp.h,v 1.34 1998/01/01 08:47:12 bde Exp $
+ * $Id: smp.h,v 1.35 1998/02/25 03:56:15 dyson Exp $
*
*/
@@ -80,8 +80,6 @@ extern volatile u_int stopped_cpus;
extern volatile u_int started_cpus;
#ifdef BETTER_CLOCK
-void forward_statclock __P((int pscnt));
-void forward_hardclock __P((int pscnt));
extern unsigned int checkstate_probed_cpus;
extern unsigned int checkstate_need_ast;
#endif
@@ -136,6 +134,10 @@ void init_secondary __P((void));
void smp_invltlb __P((void));
int stop_cpus __P((u_int));
int restart_cpus __P((u_int));
+#ifdef BETTER_CLOCK
+void forward_statclock __P((int pscnt));
+void forward_hardclock __P((int pscnt));
+#endif /* BETTER_CLOCK */
/* global data in mpapic.c */
extern volatile lapic_t lapic;