summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Evans <jasone@FreeBSD.org>2000-10-04 01:20:49 +0000
committerJason Evans <jasone@FreeBSD.org>2000-10-04 01:20:49 +0000
commitd389654761e876632c4a90f118bd2e7fb04d9660 (patch)
tree26b3da2e3f340c36dac8c2471ab79b004894b759
parent4682f420f256110392b573eba39d7546a3c94b86 (diff)
Notes
-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 d3eecb05b707..80d557913b49 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 5b847a4ed918..ca0e9ada8162 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