diff options
author | 2001-05-15 09:34:44 +0000 | |
---|---|---|
committer | 2001-05-15 09:34:44 +0000 | |
commit | 521f412cc0e67fbbcf0019e3fe36f53de9618042 (patch) | |
tree | e64805704cee53e8628c5638ccf1597ea1c54490 /sys/compat/linux/linux_sched.c | |
parent | sync (diff) | |
download | wireguard-openbsd-521f412cc0e67fbbcf0019e3fe36f53de9618042.tar.xz wireguard-openbsd-521f412cc0e67fbbcf0019e3fe36f53de9618042.zip |
typos
Diffstat (limited to 'sys/compat/linux/linux_sched.c')
-rw-r--r-- | sys/compat/linux/linux_sched.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/linux/linux_sched.c b/sys/compat/linux/linux_sched.c index bb34ad0c322..7b0e050a011 100644 --- a/sys/compat/linux/linux_sched.c +++ b/sys/compat/linux/linux_sched.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_sched.c,v 1.1 2001/04/02 21:43:11 niklas Exp $ */ +/* $OpenBSD: linux_sched.c,v 1.2 2001/05/15 09:34:44 jasoni Exp $ */ /* $NetBSD: linux_sched.c,v 1.6 2000/05/28 05:49:05 thorpej Exp $ */ /*- @@ -220,7 +220,7 @@ linux_sys_sched_setscheduler(cp, v, retval) } /* - * We can't emulate anything put the default scheduling policy. + * We can't emulate anything but the default scheduling policy. */ if (SCARG(uap, policy) != LINUX_SCHED_OTHER || lp.sched_priority != 0) return (EINVAL); @@ -260,7 +260,7 @@ linux_sys_sched_getscheduler(cp, v, retval) } /* - * We can't emulate anything put the default scheduling policy. + * We can't emulate anything but the default scheduling policy. */ *retval = LINUX_SCHED_OTHER; return (0); @@ -287,7 +287,7 @@ linux_sys_sched_get_priority_max(cp, v, retval) } */ *uap = v; /* - * We can't emulate anything put the default scheduling policy. + * We can't emulate anything but the default scheduling policy. */ if (SCARG(uap, policy) != LINUX_SCHED_OTHER) { *retval = -1; @@ -309,7 +309,7 @@ linux_sys_sched_get_priority_min(cp, v, retval) } */ *uap = v; /* - * We can't emulate anything put the default scheduling policy. + * We can't emulate anything but the default scheduling policy. */ if (SCARG(uap, policy) != LINUX_SCHED_OTHER) { *retval = -1; |