diff options
| author | John-Mark Gurney <jmg@FreeBSD.org> | 1997-12-04 21:21:26 +0000 |
|---|---|---|
| committer | John-Mark Gurney <jmg@FreeBSD.org> | 1997-12-04 21:21:26 +0000 |
| commit | 4d9deedb49d6031cdbbc6ba4e5c924f06d71e104 (patch) | |
| tree | d25d7abefb3ad6b9ddb54ea55e52b2168dadc05b | |
| parent | b0050656a793fe93e53eaffa0b734557aeb691c7 (diff) | |
Notes
| -rw-r--r-- | sys/amd64/amd64/machdep.c | 7 | ||||
| -rw-r--r-- | sys/amd64/amd64/trap.c | 5 | ||||
| -rw-r--r-- | sys/i386/i386/machdep.c | 7 | ||||
| -rw-r--r-- | sys/i386/i386/trap.c | 5 | ||||
| -rw-r--r-- | sys/kern/subr_trap.c | 5 |
5 files changed, 17 insertions, 12 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index bf1f8bf039bf..d6db6e620602 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -35,17 +35,18 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.276 1997/12/03 16:27:33 sef Exp $ + * $Id: machdep.c,v 1.277 1997/12/04 14:35:39 jkh Exp $ */ #include "apm.h" #include "npx.h" -#include "opt_sysvipc.h" -#include "opt_ddb.h" #include "opt_bounce.h" +#include "opt_cpu.h" +#include "opt_ddb.h" #include "opt_maxmem.h" #include "opt_perfmon.h" #include "opt_smp.h" +#include "opt_sysvipc.h" #include "opt_userconfig.h" #include "opt_vm86.h" diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index e8a8ea0ff4ed..8c45d1f96ace 100644 --- a/sys/amd64/amd64/trap.c +++ b/sys/amd64/amd64/trap.c @@ -35,15 +35,16 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.116 1997/12/03 02:45:50 sef Exp $ + * $Id: trap.c,v 1.117 1997/12/04 14:35:40 jkh Exp $ */ /* * 386 Trap and System call handling */ -#include "opt_ktrace.h" +#include "opt_cpu.h" #include "opt_ddb.h" +#include "opt_ktrace.h" #include "opt_vm86.h" #include <sys/param.h> diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index bf1f8bf039bf..d6db6e620602 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -35,17 +35,18 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.276 1997/12/03 16:27:33 sef Exp $ + * $Id: machdep.c,v 1.277 1997/12/04 14:35:39 jkh Exp $ */ #include "apm.h" #include "npx.h" -#include "opt_sysvipc.h" -#include "opt_ddb.h" #include "opt_bounce.h" +#include "opt_cpu.h" +#include "opt_ddb.h" #include "opt_maxmem.h" #include "opt_perfmon.h" #include "opt_smp.h" +#include "opt_sysvipc.h" #include "opt_userconfig.h" #include "opt_vm86.h" diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index e8a8ea0ff4ed..8c45d1f96ace 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -35,15 +35,16 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.116 1997/12/03 02:45:50 sef Exp $ + * $Id: trap.c,v 1.117 1997/12/04 14:35:40 jkh Exp $ */ /* * 386 Trap and System call handling */ -#include "opt_ktrace.h" +#include "opt_cpu.h" #include "opt_ddb.h" +#include "opt_ktrace.h" #include "opt_vm86.h" #include <sys/param.h> diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c index e8a8ea0ff4ed..8c45d1f96ace 100644 --- a/sys/kern/subr_trap.c +++ b/sys/kern/subr_trap.c @@ -35,15 +35,16 @@ * SUCH DAMAGE. * * from: @(#)trap.c 7.4 (Berkeley) 5/13/91 - * $Id: trap.c,v 1.116 1997/12/03 02:45:50 sef Exp $ + * $Id: trap.c,v 1.117 1997/12/04 14:35:40 jkh Exp $ */ /* * 386 Trap and System call handling */ -#include "opt_ktrace.h" +#include "opt_cpu.h" #include "opt_ddb.h" +#include "opt_ktrace.h" #include "opt_vm86.h" #include <sys/param.h> |
