summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/alpha/alpha/synch_machdep.c2
-rw-r--r--sys/i386/i386/synch_machdep.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/alpha/synch_machdep.c b/sys/alpha/alpha/synch_machdep.c
index d3eecb0..80d5579 100644
--- a/sys/alpha/alpha/synch_machdep.c
+++ b/sys/alpha/alpha/synch_machdep.c
@@ -466,7 +466,7 @@ mtx_validate(struct mtx *m, int when)
for (mp = all_mtx.mtx_next; mp != &all_mtx; mp = mp->mtx_next)
if (mp == m) {
/*
- * Not good. This mutex already exits
+ * Not good. This mutex already exists.
*/
retval = 1;
#if 1
diff --git a/sys/i386/i386/synch_machdep.c b/sys/i386/i386/synch_machdep.c
index 5b847a4..ca0e9ad 100644
--- a/sys/i386/i386/synch_machdep.c
+++ b/sys/i386/i386/synch_machdep.c
@@ -472,7 +472,7 @@ mtx_validate(struct mtx *m, int when)
for (mp = all_mtx.mtx_next; mp != &all_mtx; mp = mp->mtx_next)
if (mp == m) {
/*
- * Not good. This mutex already exits
+ * Not good. This mutex already exists.
*/
retval = 1;
#if 1
OpenPOWER on IntegriCloud