summaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_misc.c
diff options
context:
space:
mode:
authorjasoni <jasoni@cvs.openbsd.org>2000-07-23 22:35:39 +0000
committerjasoni <jasoni@cvs.openbsd.org>2000-07-23 22:35:39 +0000
commit5e8d9da5e485a5467767c2bf93870399f9bbd3c6 (patch)
tree7d8f4bec1f545fb5abb44316c664bb14b8e2f6ad /sys/compat/linux/linux_misc.c
parent806f14b34698046b96cc89e14ebd979b8fa9f61d (diff)
OpenBSD -> NetBSD where previously missed.
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
-rw-r--r--sys/compat/linux/linux_misc.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index d279dc10e26..fe78c9fe6dd 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: linux_misc.c,v 1.30 2000/07/17 05:45:34 art Exp $ */
+/* $OpenBSD: linux_misc.c,v 1.31 2000/07/23 22:35:38 jasoni Exp $ */
/* $NetBSD: linux_misc.c,v 1.27 1996/05/20 01:59:21 fvdl Exp $ */
/*
@@ -102,8 +102,8 @@ bsd_to_linux_wstat(status)
}
/*
- * waitpid(2). Passed on to the NetBSD call, surrounded by code to
- * reserve some space for a NetBSD-style wait status, and converting
+ * waitpid(2). Passed on to the OpenBSD call, surrounded by code to
+ * reserve some space for a OpenBSD-style wait status, and converting
* it to what Linux wants.
*/
int
@@ -214,7 +214,7 @@ linux_sys_setresgid(p, v, retval)
sgid = SCARG(uap, sgid);
/*
- * Note: These checks are a little different than the NetBSD
+ * Note: These checks are a little different than the OpenBSD
* setregid(2) call performs. This precisely follows the
* behavior of the Linux kernel.
*/
@@ -241,7 +241,7 @@ linux_sys_setresgid(p, v, retval)
/*
* Now assign the real, effective, and saved GIDs.
- * Note that Linux, unlike NetBSD in setregid(2), does not
+ * Note that Linux, unlike OpenBSD in setregid(2), does not
* set the saved UID in this call unless the user specifies
* it.
*/
@@ -314,7 +314,7 @@ linux_sys_break(p, v, retval)
/*
* Linux brk(2). The check if the new address is >= the old one is
- * done in the kernel in Linux. NetBSD does it in the library.
+ * done in the kernel in Linux. OpenBSD does it in the library.
*/
int
linux_sys_brk(p, v, retval)
@@ -494,7 +494,7 @@ linux_sys_fstatfs(p, v, retval)
/*
* uname(). Just copy the info from the various strings stored in the
* kernel, and put it in the Linux utsname structure. That structure
- * is almost the same as the NetBSD one, only it has fields 65 characters
+ * is almost the same as the OpenBSD one, only it has fields 65 characters
* long, and an extra domainname field.
*/
int
@@ -725,7 +725,7 @@ linux_sys_times(p, v, retval)
}
/*
- * NetBSD passes fd[0] in retval[0], and fd[1] in retval[1].
+ * OpenBSD passes fd[0] in retval[0], and fd[1] in retval[1].
* Linux directly passes the pointer.
*/
int
@@ -771,7 +771,7 @@ linux_sys_pipe(p, v, retval)
}
/*
- * Alarm. This is a libc call which uses setitimer(2) in NetBSD.
+ * Alarm. This is a libc call which uses setitimer(2) in OpenBSD.
* Fiddle with the timers to make it work.
*/
int
@@ -1363,7 +1363,7 @@ linux_sys_setresuid(p, v, retval)
suid = SCARG(uap, suid);
/*
- * Note: These checks are a little different than the NetBSD
+ * Note: These checks are a little different than the OpenBSD
* setreuid(2) call performs. This precisely follows the
* behavior of the Linux kernel.
*/
@@ -1390,7 +1390,7 @@ linux_sys_setresuid(p, v, retval)
/*
* Now assign the new real, effective, and saved UIDs.
- * Note that Linux, unlike NetBSD in setreuid(2), does not
+ * Note that Linux, unlike OpenBSD in setreuid(2), does not
* set the saved UID in this call unless the user specifies
* it.
*/