summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLogan Upchurch <lupchurchnull@gmail.com>2024-04-19 09:38:31 -0400
committerTomas Mraz <tomas@openssl.org>2024-04-23 11:26:29 +0200
commit5454ef7cb38290196758f72e16b598e970ef5ecb (patch)
tree626b50f80df24af85fefb1d93d5ce8105e2438bb
parent98161274636dca12e3bfafab7d2d2ac28f4d7c30 (diff)
crypto/threads_pthread.c: Fix typos found by codespell
CLA: trivial Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24206)
-rw-r--r--crypto/threads_pthread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/threads_pthread.c b/crypto/threads_pthread.c
index f7e350c0b4..03ef60d576 100644
--- a/crypto/threads_pthread.c
+++ b/crypto/threads_pthread.c
@@ -81,8 +81,8 @@ typedef struct rcu_cb_item *prcu_cb_item;
* 1) We are building on a target that defines __APPLE__ AND
* 2) We are building on a target using clang (__clang__) AND
* 3) We are building for an M1 processor (__aarch64__)
- * Then we shold not use __atomic_load_n and instead implement our own
- * function to issue the ldar instruction instead, which procuces the proper
+ * Then we should not use __atomic_load_n and instead implement our own
+ * function to issue the ldar instruction instead, which produces the proper
* sequencing guarantees
*/
static inline void *apple_atomic_load_n_pvoid(void **p,