Module Name: src
Committed By: skrll
Date: Wed Jan 13 07:36:56 UTC 2021
Modified Files:
src/sys/kern: kern_lwp.c kgdb_stub.c
Log Message:
Improve English in comments
To generate a diff of this commit:
cvs rdiff -u -r1.242 -r1.243 src/sys/kern/kern_lwp.c
cvs rdiff -u -r1.29 -r1.30 src/sys/kern/kgdb_stub.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/kern_lwp.c
diff -u src/sys/kern/kern_lwp.c:1.242 src/sys/kern/kern_lwp.c:1.243
--- src/sys/kern/kern_lwp.c:1.242 Mon Jun 22 16:21:29 2020
+++ src/sys/kern/kern_lwp.c Wed Jan 13 07:36:56 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_lwp.c,v 1.242 2020/06/22 16:21:29 maxv Exp $ */
+/* $NetBSD: kern_lwp.c,v 1.243 2021/01/13 07:36:56 skrll Exp $ */
/*-
* Copyright (c) 2001, 2006, 2007, 2008, 2009, 2019, 2020
@@ -196,7 +196,7 @@
*
* sleepq -> turnstile -> spc_lwplock -> spc_mutex
*
- * Each process has an scheduler state lock (proc::p_lock), and a
+ * Each process has a scheduler state lock (proc::p_lock), and a
* number of counters on LWPs and their states: p_nzlwps, p_nrlwps, and
* so on. When an LWP is to be entered into or removed from one of the
* following states, p_lock must be held and the process wide counters
@@ -217,7 +217,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_lwp.c,v 1.242 2020/06/22 16:21:29 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_lwp.c,v 1.243 2021/01/13 07:36:56 skrll Exp $");
#include "opt_ddb.h"
#include "opt_lockdebug.h"
Index: src/sys/kern/kgdb_stub.c
diff -u src/sys/kern/kgdb_stub.c:1.29 src/sys/kern/kgdb_stub.c:1.30
--- src/sys/kern/kgdb_stub.c:1.29 Fri Jun 26 14:26:38 2015
+++ src/sys/kern/kgdb_stub.c Wed Jan 13 07:36:56 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: kgdb_stub.c,v 1.29 2015/06/26 14:26:38 christos Exp $ */
+/* $NetBSD: kgdb_stub.c,v 1.30 2021/01/13 07:36:56 skrll Exp $ */
/*
* Copyright (c) 1990, 1993
@@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kgdb_stub.c,v 1.29 2015/06/26 14:26:38 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kgdb_stub.c,v 1.30 2021/01/13 07:36:56 skrll Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -164,7 +164,7 @@ digit2i(u_char c)
/*
* Convert the low 4 bits of an integer into
- * an hex digit.
+ * a hex digit.
*/
static u_char
i2digit(int n)
@@ -173,7 +173,7 @@ i2digit(int n)
}
/*
- * Convert a byte array into an hex string.
+ * Convert a byte array into a hex string.
*/
static void
mem2hex(void *vdst, void *vsrc, int len)
@@ -189,7 +189,7 @@ mem2hex(void *vdst, void *vsrc, int len)
}
/*
- * Convert an hex string into a byte array.
+ * Convert a hex string into a byte array.
* This returns a pointer to the character following
* the last valid hex digit. If the string ends in
* the middle of a byte, NULL is returned.
@@ -213,7 +213,7 @@ hex2mem(void *vdst, u_char *src, int max
}
/*
- * Convert an hex string into an integer.
+ * Convert a hex string into an integer.
* This returns a pointer to the character following
* the last valid hex digit.
*/