s/shold/should/

This commit is contained in:
andvar 2024-02-02 21:52:22 +00:00
parent 0d507d87e3
commit 82befdcba0
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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);