summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/init_main.c4
-rw-r--r--sys/kern/kern_exec.c4
-rw-r--r--sys/kern/uipc_usrreq.c4
-rw-r--r--sys/kern/vfs_aio.c8
-rw-r--r--sys/kern/vfs_bio.c4
5 files changed, 12 insertions, 12 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 022cfa3..3de881d 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* @(#)init_main.c 8.9 (Berkeley) 1/21/94
- * $Id: init_main.c,v 1.88 1998/04/08 09:01:52 phk Exp $
+ * $Id: init_main.c,v 1.89 1998/04/11 17:24:06 phk Exp $
*/
#include "opt_devfs.h"
@@ -391,7 +391,7 @@ proc0_init(dummy)
#define INCOMPAT_LITES2
#ifdef INCOMPAT_LITES2
/*
- * proc0 needs to have a coherent frame base in it's stack.
+ * proc0 needs to have a coherent frame base in its stack.
*/
cpu_set_init_frame(p, init_framep); /* XXX! */
#endif /* INCOMPAT_LITES2*/
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c
index fb591cd..04e0f1a 100644
--- a/sys/kern/kern_exec.c
+++ b/sys/kern/kern_exec.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: kern_exec.c,v 1.80 1998/03/07 21:35:17 dyson Exp $
+ * $Id: kern_exec.c,v 1.81 1998/03/08 06:21:33 dyson Exp $
*/
#include <sys/param.h>
@@ -244,7 +244,7 @@ interpret:
/*
* mark as execed, wakeup the process that vforked (if any) and tell
- * it that it now has it's own resources back
+ * it that it now has its own resources back
*/
p->p_flag |= P_EXEC;
if (p->p_pptr && (p->p_flag & P_PPWAIT)) {
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c
index dfd04d6..8ca43f5 100644
--- a/sys/kern/uipc_usrreq.c
+++ b/sys/kern/uipc_usrreq.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* From: @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94
- * $Id: uipc_usrreq.c,v 1.31 1998/02/04 22:32:37 eivind Exp $
+ * $Id: uipc_usrreq.c,v 1.32 1998/02/06 12:13:28 eivind Exp $
*/
#include <sys/param.h>
@@ -927,7 +927,7 @@ unp_gc()
/*
* So, Ok, it's one of our sockets and it IS externally
* accessible (or was defered). Now we look
- * to see if we hold any file descriptors in it's
+ * to see if we hold any file descriptors in its
* message buffers. Follow those links and mark them
* as accessible too.
*/
diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c
index 043505e..7774d20 100644
--- a/sys/kern/vfs_aio.c
+++ b/sys/kern/vfs_aio.c
@@ -13,7 +13,7 @@
* bad that happens because of using this software isn't the responsibility
* of the author. This software is distributed AS-IS.
*
- * $Id: vfs_aio.c,v 1.26 1998/03/28 11:50:04 dufault Exp $
+ * $Id: vfs_aio.c,v 1.27 1998/03/30 09:51:00 phk Exp $
*/
/*
@@ -685,7 +685,7 @@ aio_daemon(void *uproc)
mycp->p_ucred->cr_groups[0] = 1;
/*
- * The daemon resides in it's own pgrp.
+ * The daemon resides in its own pgrp.
*/
enterpgrp(mycp, mycp->p_pid, 1);
@@ -763,7 +763,7 @@ aio_daemon(void *uproc)
/*
* Disassociate from previous clients file descriptors, and
* associate to the new clients descriptors. Note that
- * the daemon doesn't need to worry about it's orginal
+ * the daemon doesn't need to worry about its orginal
* descriptors, because they were originally freed.
*/
if (mycp->p_fd)
@@ -916,7 +916,7 @@ aio_daemon(void *uproc)
/*
* Create a new AIO daemon. This is mostly a kernel-thread fork routine.
- * The AIO daemon modifies it's environment itself.
+ * The AIO daemon modifies its environment itself.
*/
static int
aio_newproc()
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index 914f48f..bbba887 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -11,7 +11,7 @@
* 2. Absolutely no warranty of function or purpose is made by the author
* John S. Dyson.
*
- * $Id: vfs_bio.c,v 1.160 1998/03/27 06:48:24 dyson Exp $
+ * $Id: vfs_bio.c,v 1.161 1998/04/15 17:46:30 bde Exp $
*/
/*
@@ -1663,7 +1663,7 @@ allocbuf(struct buf * bp, int size)
origbufsize = 0;
#if !defined(NO_B_MALLOC)
/*
- * If the buffer is growing on it's other-than-first allocation,
+ * If the buffer is growing on its other-than-first allocation,
* then we revert to the page-allocation scheme.
*/
if (bp->b_flags & B_MALLOC) {
OpenPOWER on IntegriCloud