diff options
-rw-r--r-- | sys/kern/ksched.c | 3 | ||||
-rw-r--r-- | sys/kern/p1003_1b.c | 3 | ||||
-rw-r--r-- | sys/kern/posix4_mib.c | 2 | ||||
-rw-r--r-- | sys/sys/posix4.h | 2 |
4 files changed, 4 insertions, 6 deletions
diff --git a/sys/kern/ksched.c b/sys/kern/ksched.c index e8af76b..4127367 100644 --- a/sys/kern/ksched.c +++ b/sys/kern/ksched.c @@ -43,11 +43,10 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/proc.h> +#include <sys/posix4.h> #include <sys/resource.h> #include <sys/sched.h> -#include <posix4/posix4.h> - /* ksched: Real-time extension to support POSIX priority scheduling. */ diff --git a/sys/kern/p1003_1b.c b/sys/kern/p1003_1b.c index 8ed0de5..5baf09e 100644 --- a/sys/kern/p1003_1b.c +++ b/sys/kern/p1003_1b.c @@ -46,14 +46,13 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/priv.h> #include <sys/proc.h> +#include <sys/posix4.h> #include <sys/syscallsubr.h> #include <sys/sysctl.h> #include <sys/sysent.h> #include <sys/syslog.h> #include <sys/sysproto.h> -#include <posix4/posix4.h> - MALLOC_DEFINE(M_P31B, "p1003.1b", "Posix 1003.1B"); /* The system calls return ENOSYS if an entry is called that is diff --git a/sys/kern/posix4_mib.c b/sys/kern/posix4_mib.c index 1909216..fbb0418 100644 --- a/sys/kern/posix4_mib.c +++ b/sys/kern/posix4_mib.c @@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$"); #include <sys/queue.h> #include <sys/sysctl.h> #include <sys/vnode.h> -#include <posix4/posix4.h> +#include <sys/posix4.h> static int facility[CTL_P1003_1B_MAXID - 1]; static int facility_initialized[CTL_P1003_1B_MAXID - 1]; diff --git a/sys/sys/posix4.h b/sys/sys/posix4.h index 779665d..ea379c0 100644 --- a/sys/sys/posix4.h +++ b/sys/sys/posix4.h @@ -37,7 +37,7 @@ #include <sys/param.h> #include <sys/ioccom.h> #include <sys/malloc.h> -#include <posix4/sched.h> +#include <sys/sched.h> /* Generate syscall stubs for when something is optionally * loadable as a module. References "syscall_not_present". |