diff options
author | fsmp <fsmp@FreeBSD.org> | 1997-06-27 18:29:55 +0000 |
---|---|---|
committer | fsmp <fsmp@FreeBSD.org> | 1997-06-27 18:29:55 +0000 |
commit | cb0446e5aea34c51845c3a4617a9044e48667558 (patch) | |
tree | 7aba68e05d2156cff6cb0a891cb2dbc51e145662 | |
parent | 14edf92299d138443944090bd25e1d9e891bf369 (diff) | |
download | FreeBSD-src-cb0446e5aea34c51845c3a4617a9044e48667558.zip FreeBSD-src-cb0446e5aea34c51845c3a4617a9044e48667558.tar.gz |
Removed '#include <machine/smptests.h>' line, no longer needed.
-rw-r--r-- | sys/amd64/amd64/machdep.c | 5 | ||||
-rw-r--r-- | sys/i386/i386/machdep.c | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index 4456e42..663fadb 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.250 1997/06/22 15:47:07 peter Exp $ + * $Id: machdep.c,v 1.251 1997/06/22 16:03:10 peter Exp $ */ #include "apm.h" @@ -114,7 +114,6 @@ #include <machine/md_var.h> #ifdef SMP #include <machine/smp.h> -#include <machine/smptests.h> /** LATE_START */ #endif #ifdef PERFMON #include <machine/perfmon.h> @@ -777,7 +776,7 @@ SYSCTL_INT(_machdep, CPU_WALLCLOCK, wall_cmos_clock, int currentldt; int _default_ldt; #ifdef SMP -union descriptor gdt[NGDT + NCPU]; /* global descriptor table */ +union descriptor gdt[NGDT + NCPU]; /* global descriptor table */ #else union descriptor gdt[NGDT]; /* global descriptor table */ #endif diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index 4456e42..663fadb 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.250 1997/06/22 15:47:07 peter Exp $ + * $Id: machdep.c,v 1.251 1997/06/22 16:03:10 peter Exp $ */ #include "apm.h" @@ -114,7 +114,6 @@ #include <machine/md_var.h> #ifdef SMP #include <machine/smp.h> -#include <machine/smptests.h> /** LATE_START */ #endif #ifdef PERFMON #include <machine/perfmon.h> @@ -777,7 +776,7 @@ SYSCTL_INT(_machdep, CPU_WALLCLOCK, wall_cmos_clock, int currentldt; int _default_ldt; #ifdef SMP -union descriptor gdt[NGDT + NCPU]; /* global descriptor table */ +union descriptor gdt[NGDT + NCPU]; /* global descriptor table */ #else union descriptor gdt[NGDT]; /* global descriptor table */ #endif |