diff options
| author | Steve Passe <fsmp@FreeBSD.org> | 1997-08-30 08:08:10 +0000 |
|---|---|---|
| committer | Steve Passe <fsmp@FreeBSD.org> | 1997-08-30 08:08:10 +0000 |
| commit | 78292efeef6fe20911f07b09e626a12e9c12b234 (patch) | |
| tree | 4c99d6592ffa5600ca2d58df8fff140e2491d3dd /sys/amd64/include/smp.h | |
| parent | 579f738316c91efb2e8f8e54aaba07823707c507 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/include/smp.h')
| -rw-r--r-- | sys/amd64/include/smp.h | 10 |
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[]; |
