diff options
author | John Baldwin <jhb@FreeBSD.org> | 2010-11-19 17:56:16 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2010-11-19 17:56:16 +0000 |
commit | 34c1c5992faa32558bcc47c5b851d5a9f2fcaa6f (patch) | |
tree | c54c924138033df988910cea019b315ae7e90336 /sys/kern/p1003_1b.c | |
parent | 00f8bffc22e2ce7a7c8e8489e857ba3855830cfb (diff) |
Set various POSIX capability sysctls to the version of the API that is
supported rather than 1. They are supposed to return a suitable value
for sysconf(3). While here, make the fsync sysctl match <unistd.h>.
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=215540
Diffstat (limited to 'sys/kern/p1003_1b.c')
-rw-r--r-- | sys/kern/p1003_1b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/p1003_1b.c b/sys/kern/p1003_1b.c index 5de60f2ce8ef..9620a36bfa10 100644 --- a/sys/kern/p1003_1b.c +++ b/sys/kern/p1003_1b.c @@ -102,7 +102,7 @@ sched_attach(void) int ret = ksched_attach(&ksched); if (ret == 0) - p31b_setcfg(CTL_P1003_1B_PRIORITY_SCHEDULING, 1); + p31b_setcfg(CTL_P1003_1B_PRIORITY_SCHEDULING, 200112L); return ret; } |