diff options
author | jhb <jhb@FreeBSD.org> | 2005-10-24 15:57:27 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-10-24 15:57:27 +0000 |
commit | 14d19bb6947ed5e8b51de47f9a047bbb00a514ba (patch) | |
tree | 53bbda7a5ef7664791d92bea4da1982dedf711b3 /sys/kern/subr_witness.c | |
parent | 3f6e2e8e0bd6fc55341232e15875b18071c1d023 (diff) | |
download | FreeBSD-src-14d19bb6947ed5e8b51de47f9a047bbb00a514ba.zip FreeBSD-src-14d19bb6947ed5e8b51de47f9a047bbb00a514ba.tar.gz |
Spell hierarchy correctly in comments.
Submitted by: Wojciech A. Koszek dunstan at freebsd dot czest dot pl
Diffstat (limited to 'sys/kern/subr_witness.c')
-rw-r--r-- | sys/kern/subr_witness.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_witness.c b/sys/kern/subr_witness.c index 72c08c8..06bab91 100644 --- a/sys/kern/subr_witness.c +++ b/sys/kern/subr_witness.c @@ -205,7 +205,7 @@ SYSCTL_PROC(_debug_witness, OID_AUTO, watch, CTLFLAG_RW | CTLTYPE_INT, NULL, 0, /* * When KDB is enabled and witness_kdb is set to 1, it will cause the system * to drop into kdebug() when: - * - a lock heirarchy violation occurs + * - a lock hierarchy violation occurs * - locks are held when going to sleep. */ #ifdef WITNESS_KDB @@ -219,7 +219,7 @@ SYSCTL_INT(_debug_witness, OID_AUTO, kdb, CTLFLAG_RW, &witness_kdb, 0, ""); /* * When KDB is enabled and witness_trace is set to 1, it will cause the system * to print a stack trace: - * - a lock heirarchy violation occurs + * - a lock hierarchy violation occurs * - locks are held when going to sleep. */ int witness_trace = 1; |