diff options
author | peter <peter@FreeBSD.org> | 1997-10-10 09:44:12 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-10-10 09:44:12 +0000 |
commit | fc821abd4cc8c7de33da0bf4a15c6ca5b53f82eb (patch) | |
tree | 9d70f20795753c0aeb2db313e990a9e586591ca2 /sys/kern/subr_smp.c | |
parent | 017c612e631166a1e7846b1bc4c174f13782bf45 (diff) | |
download | FreeBSD-src-fc821abd4cc8c7de33da0bf4a15c6ca5b53f82eb.zip FreeBSD-src-fc821abd4cc8c7de33da0bf4a15c6ca5b53f82eb.tar.gz |
Convert the VM86 option from a global option to an option only depended
on by the files that use it. Changing the VM86 option now only causes
a recompile of a dozen files or so rather than the entire kernel.
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r-- | sys/kern/subr_smp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 2927ace..868ffea 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -22,10 +22,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.54 1997/09/21 15:03:57 peter Exp $ + * $Id: mp_machdep.c,v 1.56 1997/10/06 02:11:32 dyson Exp $ */ #include "opt_smp.h" +#include "opt_vm86.h" #include <sys/param.h> #include <sys/systm.h> |