diff options
author | tegge <tegge@FreeBSD.org> | 1997-12-12 21:45:23 +0000 |
---|---|---|
committer | tegge <tegge@FreeBSD.org> | 1997-12-12 21:45:23 +0000 |
commit | 982ed8caa2c928574b4adcc4149fb11f323b0f46 (patch) | |
tree | d95de02ec19d917acd724411fb0297b933a23a0a /sys/kern | |
parent | 15bda558babc940cb959ec072549a3aa395eb260 (diff) | |
download | FreeBSD-src-982ed8caa2c928574b4adcc4149fb11f323b0f46.zip FreeBSD-src-982ed8caa2c928574b4adcc4149fb11f323b0f46.tar.gz |
Add needed #include.
Problem found by: Bruce Evans <bde@zeta.org.au>
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_smp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 632d5dd..60689a1 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.40 1997/12/04 19:30:03 smp Exp smp $ + * $Id: mp_machdep.c,v 1.61 1997/12/08 23:00:24 fsmp Exp $ */ #include "opt_smp.h" @@ -52,6 +52,9 @@ #include <sys/lock.h> #include <vm/vm_map.h> #include <sys/user.h> +#ifdef GPROF +#include <sys/gmon.h> +#endif #endif #include <machine/smp.h> |