Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Improve english in a comment
details: https://anonhg.NetBSD.org/src/rev/7c1d7471b75e
branches: trunk
changeset: 949412:7c1d7471b75e
user: skrll <skrll%NetBSD.org@localhost>
date: Wed Jan 13 07:34:37 2021 +0000
description:
Improve english in a comment
diffstat:
sys/kern/kern_threadpool.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r e5ddf6bb50da -r 7c1d7471b75e sys/kern/kern_threadpool.c
--- a/sys/kern/kern_threadpool.c Wed Jan 13 06:44:55 2021 +0000
+++ b/sys/kern/kern_threadpool.c Wed Jan 13 07:34:37 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_threadpool.c,v 1.21 2021/01/13 02:20:15 riastradh Exp $ */
+/* $NetBSD: kern_threadpool.c,v 1.22 2021/01/13 07:34:37 skrll Exp $ */
/*-
* Copyright (c) 2014, 2018 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
* Thread pools.
*
* A thread pool is a collection of worker threads idle or running
- * jobs, together with an dispatcher thread that does not run jobs but
+ * jobs, together with a dispatcher thread that does not run jobs but
* can be given jobs to assign to a worker thread. Scheduling a job in
* a thread pool does not allocate or even sleep at all, except perhaps
* on an adaptive lock, unlike kthread_create. Jobs reuse threads, so
@@ -81,7 +81,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_threadpool.c,v 1.21 2021/01/13 02:20:15 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_threadpool.c,v 1.22 2021/01/13 07:34:37 skrll Exp $");
#include <sys/types.h>
#include <sys/param.h>
Home |
Main Index |
Thread Index |
Old Index