summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Cosgrove <tom@cvs.openbsd.org>2017-08-17 20:50:52 +0000
committerTom Cosgrove <tom@cvs.openbsd.org>2017-08-17 20:50:52 +0000
commit07c9e366b7d59f6d88089b91be25bdb2bb6f41f0 (patch)
treea9d50e4751f0172fca8253f0c4d84a1b7e476ddf
parent9ba1696645cd271ec592bb649b2db010ac4ad6ba (diff)
Fix typo in comments: s/return/returns/ in "a function that never return."
-rw-r--r--sys/arch/alpha/alpha/vm_machdep.c4
-rw-r--r--sys/arch/arm/arm/vm_machdep.c4
-rw-r--r--sys/arch/sh/sh/vm_machdep.c4
-rw-r--r--sys/arch/sparc64/sparc64/vm_machdep.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/alpha/alpha/vm_machdep.c b/sys/arch/alpha/alpha/vm_machdep.c
index 48f6ec11f2a..ee448a8c566 100644
--- a/sys/arch/alpha/alpha/vm_machdep.c
+++ b/sys/arch/alpha/alpha/vm_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_machdep.c,v 1.46 2017/02/12 04:55:08 guenther Exp $ */
+/* $OpenBSD: vm_machdep.c,v 1.47 2017/08/17 20:50:51 tom Exp $ */
/* $NetBSD: vm_machdep.c,v 1.55 2000/03/29 03:49:48 simonb Exp $ */
/*
@@ -75,7 +75,7 @@ cpu_exit(p)
* For normal processes this is child_return(), which causes the
* child to go directly to user level with an apparent return value
* of 0 from fork(), while the parent process returns normally.
- * For kernel threads this will be a function that never return.
+ * For kernel threads this will be a function that never returns.
*
* An alternate user-level stack or TCB can be requested by passing
* a non-NULL value; these are poked into the PCB so they're in
diff --git a/sys/arch/arm/arm/vm_machdep.c b/sys/arch/arm/arm/vm_machdep.c
index 20fd8b286c2..d755b8cd59f 100644
--- a/sys/arch/arm/arm/vm_machdep.c
+++ b/sys/arch/arm/arm/vm_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_machdep.c,v 1.20 2017/08/17 20:47:49 tom Exp $ */
+/* $OpenBSD: vm_machdep.c,v 1.21 2017/08/17 20:50:51 tom Exp $ */
/* $NetBSD: vm_machdep.c,v 1.31 2004/01/04 11:33:29 jdolecek Exp $ */
/*
@@ -78,7 +78,7 @@ extern void proc_trampoline (void);
* For normal processes this is child_return(), which causes the
* child to go directly to user level with an apparent return value
* of 0 from fork(), while the parent process returns normally.
- * For kernel threads this will be a function that never return.
+ * For kernel threads this will be a function that never returns.
*
* An alternate user-level stack or TCB can be requested by passing
* a non-NULL value; these are poked into the PCB so they're in
diff --git a/sys/arch/sh/sh/vm_machdep.c b/sys/arch/sh/sh/vm_machdep.c
index 16645ebfd0d..32c01097225 100644
--- a/sys/arch/sh/sh/vm_machdep.c
+++ b/sys/arch/sh/sh/vm_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_machdep.c,v 1.14 2017/02/12 04:55:08 guenther Exp $ */
+/* $OpenBSD: vm_machdep.c,v 1.15 2017/08/17 20:50:51 tom Exp $ */
/* $NetBSD: vm_machdep.c,v 1.53 2006/08/31 16:49:21 matt Exp $ */
/*
@@ -126,7 +126,7 @@ extern void proc_trampoline(void);
* For normal processes this is child_return(), which causes the
* child to go directly to user level with an apparent return value
* of 0 from fork(), while the parent process returns normally.
- * For kernel threads this will be a function that never return.
+ * For kernel threads this will be a function that never returns.
*
* An alternate user-level stack or TCB can be requested by passing
* a non-NULL value; these are poked into the PCB so they're in
diff --git a/sys/arch/sparc64/sparc64/vm_machdep.c b/sys/arch/sparc64/sparc64/vm_machdep.c
index 9d333d462b0..e6f4f5e6306 100644
--- a/sys/arch/sparc64/sparc64/vm_machdep.c
+++ b/sys/arch/sparc64/sparc64/vm_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vm_machdep.c,v 1.38 2017/05/25 03:19:39 dlg Exp $ */
+/* $OpenBSD: vm_machdep.c,v 1.39 2017/08/17 20:50:51 tom Exp $ */
/* $NetBSD: vm_machdep.c,v 1.38 2001/06/30 00:02:20 eeh Exp $ */
/*
@@ -157,7 +157,7 @@ char cpu_forkname[] = "cpu_fork()";
* For normal processes this is child_return(), which causes the
* child to go directly to user level with an apparent return value
* of 0 from fork(), while the parent process returns normally.
- * For kernel threads this will be a function that never return.
+ * For kernel threads this will be a function that never returns.
*
* An alternate user-level stack or TCB can be requested by passing
* a non-NULL value; these are poked into the PCB so they're in