Module Name:    src
Committed By:   andvar
Date:           Fri Feb  2 21:52:23 UTC 2024

Modified Files:
        src/lib/libc: shlib_version
        src/tests/rump/kernspace: threadpool.c

Log Message:
s/shold/should/


To generate a diff of this commit:
cvs rdiff -u -r1.295 -r1.296 src/lib/libc/shlib_version
cvs rdiff -u -r1.5 -r1.6 src/tests/rump/kernspace/threadpool.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/shlib_version
diff -u src/lib/libc/shlib_version:1.295 src/lib/libc/shlib_version:1.296
--- src/lib/libc/shlib_version:1.295	Tue Aug  1 17:51:24 2023
+++ src/lib/libc/shlib_version	Fri Feb  2 21:52:22 2024
@@ -1,4 +1,4 @@
-#	$NetBSD: shlib_version,v 1.295 2023/08/01 17:51:24 christos Exp $
+#	$NetBSD: shlib_version,v 1.296 2024/02/02 21:52:22 andvar Exp $
 #	Remember to update distrib/sets/lists/base/shl.* when changing
 #
 # things we wish to do on next major version bump:
@@ -8,7 +8,7 @@
 # - libc/net: resolver update to BIND8/9?
 # - md2, md4, md5, rmd160 & sha1 functions should take the same arguments AFAP
 # - Crypto hashes have name overlap with libcrypto, rename them
-# - obsolete crypto hashes shold be booted out of libc
+# - obsolete crypto hashes should be booted out of libc
 # - libc/gen/setproctitle.c: remove __ps_strings hack
 # - libc/gen/assert.c: __{diag,}assert13() -> __{diag,}assert()
 # - lib/libc/net/iso_addr.c: remove

Index: src/tests/rump/kernspace/threadpool.c
diff -u src/tests/rump/kernspace/threadpool.c:1.5 src/tests/rump/kernspace/threadpool.c:1.6
--- src/tests/rump/kernspace/threadpool.c:1.5	Fri Jan  4 05:35:24 2019
+++ src/tests/rump/kernspace/threadpool.c	Fri Feb  2 21:52:23 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: threadpool.c,v 1.5 2019/01/04 05:35:24 thorpej Exp $	*/
+/*	$NetBSD: threadpool.c,v 1.6 2024/02/02 21:52:23 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #if !defined(lint)
-__RCSID("$NetBSD: threadpool.c,v 1.5 2019/01/04 05:35:24 thorpej Exp $");
+__RCSID("$NetBSD: threadpool.c,v 1.6 2024/02/02 21:52:23 andvar Exp $");
 #endif /* !lint */
 
 #include <sys/param.h>
@@ -223,7 +223,7 @@ rumptest_threadpool_job_cancel(void)
 		cv_wait(&data.cond, &data.mutex);
 	KASSERT(data.count == 1);
 
-	/* Job is already running (and is not finished); this shold fail. */
+	/* Job is already running (and is not finished); this should fail. */
 	rv = threadpool_cancel_job_async(pool, &data.job);
 	KASSERT(rv == false);
 

Reply via email to