diff options
author | jhb <jhb@FreeBSD.org> | 2001-03-28 09:17:56 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-03-28 09:17:56 +0000 |
commit | b47bfbe544d34ff21bc24b57c556621eb2355e45 (patch) | |
tree | 6869afd0b266ec1a53538458bd3851edeeca014d /sys/i386 | |
parent | fc959358c9cfd55db6d055b3af2e84ebcc01f553 (diff) | |
download | FreeBSD-src-b47bfbe544d34ff21bc24b57c556621eb2355e45.zip FreeBSD-src-b47bfbe544d34ff21bc24b57c556621eb2355e45.tar.gz |
Catch up to header include changes:
- <sys/mutex.h> now requires <sys/systm.h>
- <sys/mutex.h> and <sys/sx.h> now require <sys/lock.h>
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/i386/procfs_machdep.c | 1 | ||||
-rw-r--r-- | sys/i386/i386/tsc.c | 4 | ||||
-rw-r--r-- | sys/i386/isa/clock.c | 4 |
3 files changed, 3 insertions, 6 deletions
diff --git a/sys/i386/i386/procfs_machdep.c b/sys/i386/i386/procfs_machdep.c index 5ca703a..292214f 100644 --- a/sys/i386/i386/procfs_machdep.c +++ b/sys/i386/i386/procfs_machdep.c @@ -71,6 +71,7 @@ #include <sys/proc.h> #include <sys/ptrace.h> #include <sys/vnode.h> +#include <sys/systm.h> #include <machine/reg.h> #include <machine/md_var.h> #include <miscfs/procfs/procfs.h> diff --git a/sys/i386/i386/tsc.c b/sys/i386/i386/tsc.c index 7d8edac..9034f81 100644 --- a/sys/i386/i386/tsc.c +++ b/sys/i386/i386/tsc.c @@ -56,14 +56,12 @@ #include <sys/systm.h> #include <sys/bus.h> #include <sys/ipl.h> +#include <sys/lock.h> #include <sys/mutex.h> #include <sys/proc.h> #include <sys/time.h> #include <sys/timetc.h> #include <sys/kernel.h> -#ifndef SMP -#include <sys/lock.h> -#endif #include <sys/sysctl.h> #include <sys/cons.h> diff --git a/sys/i386/isa/clock.c b/sys/i386/isa/clock.c index 7d8edac..9034f81 100644 --- a/sys/i386/isa/clock.c +++ b/sys/i386/isa/clock.c @@ -56,14 +56,12 @@ #include <sys/systm.h> #include <sys/bus.h> #include <sys/ipl.h> +#include <sys/lock.h> #include <sys/mutex.h> #include <sys/proc.h> #include <sys/time.h> #include <sys/timetc.h> #include <sys/kernel.h> -#ifndef SMP -#include <sys/lock.h> -#endif #include <sys/sysctl.h> #include <sys/cons.h> |