aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/include/smp.h
diff options
context:
space:
mode:
authorSteve Passe <fsmp@FreeBSD.org>1997-08-30 08:08:10 +0000
committerSteve Passe <fsmp@FreeBSD.org>1997-08-30 08:08:10 +0000
commit78292efeef6fe20911f07b09e626a12e9c12b234 (patch)
tree4c99d6592ffa5600ca2d58df8fff140e2491d3dd /sys/amd64/include/smp.h
parent579f738316c91efb2e8f8e54aaba07823707c507 (diff)
Notes
Diffstat (limited to 'sys/amd64/include/smp.h')
-rw-r--r--sys/amd64/include/smp.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/amd64/include/smp.h b/sys/amd64/include/smp.h
index 276b8384c896..a7051ff2601b 100644
--- a/sys/amd64/include/smp.h
+++ b/sys/amd64/include/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.29 1997/08/24 20:33:24 fsmp Exp $
+ * $Id: smp.h,v 1.30 1997/08/26 18:10:37 peter Exp $
*
*/
@@ -60,11 +60,19 @@ void bootMP __P((void));
/* global data in mplock.s */
extern u_int mp_lock;
extern u_int isr_lock;
+#ifdef RECURSIVE_MPINTRLOCK
+extern u_int mpintr_lock;
+#endif /* RECURSIVE_MPINTRLOCK */
/* functions in mplock.s */
void get_mplock __P((void));
void rel_mplock __P((void));
void try_mplock __P((void));
+#ifdef RECURSIVE_MPINTRLOCK
+void get_mpintrlock __P((void));
+void rel_mpintrlock __P((void));
+void try_mpintrlock __P((void));
+#endif /* RECURSIVE_MPINTRLOCK */
/* global data in apic_vector.s */
extern u_int ivectors[];