blob: 878839a5e33979fb49334b4978ae9f39778786c7 [file] [log] [blame]
Andrew Geissler615f2f12022-07-15 14:00:58 -05001From 50efb0822aa0e0ab165158dd0a26e65a2290e6d2 Mon Sep 17 00:00:00 2001
2From: Daniel Stenberg <daniel@haxx.se>
3Date: Tue, 28 Jun 2022 09:00:25 +0200
4Subject: [PATCH] easy_lock: switch to using atomic_int instead of bool
5
6To work with more compilers without requiring separate libs to
7link. Like with gcc-12 for RISC-V on Linux.
8
9Reported-by: Adam Sampson
10Fixes #9055
11Closes #9061
12
13Upstream-Status: Backport [50efb0822aa0e0ab165158dd0a26e65a2290e6d2]
14
15Signed-off-by: He Zhe <zhe.he@windriver.com>
16---
17 lib/easy_lock.h | 4 ++--
18 1 file changed, 2 insertions(+), 2 deletions(-)
19
20diff --git a/lib/easy_lock.h b/lib/easy_lock.h
21index 07c85c5ff..9c11bc50c 100644
22--- a/lib/easy_lock.h
23+++ b/lib/easy_lock.h
24@@ -40,8 +40,8 @@
25 #include <sched.h>
26 #endif
27
28-#define curl_simple_lock atomic_bool
29-#define CURL_SIMPLE_LOCK_INIT false
30+#define curl_simple_lock atomic_int
31+#define CURL_SIMPLE_LOCK_INIT 0
32
33 static inline void curl_simple_lock_lock(curl_simple_lock *lock)
34 {
35--
362.25.1
37