]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
easy_lock: switch to using atomic_int instead of bool
authorDaniel Stenberg <daniel@haxx.se>
Tue, 28 Jun 2022 07:00:25 +0000 (09:00 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 28 Jun 2022 10:45:47 +0000 (12:45 +0200)
To work with more compilers without requiring separate libs to
link. Like with gcc-12 for RISC-V on Linux.

Reported-by: Adam Sampson
Fixes #9055
Closes #9061

lib/easy_lock.h

index 07c85c5ffdd1968c2d401240de4fc4da9bf909c8..9c11bc50c5f20f9a13a6d7d62fd45f7877582dba 100644 (file)
@@ -40,8 +40,8 @@
 #include <sched.h>
 #endif
 
-#define curl_simple_lock atomic_bool
-#define CURL_SIMPLE_LOCK_INIT false
+#define curl_simple_lock atomic_int
+#define CURL_SIMPLE_LOCK_INIT 0
 
 static inline void curl_simple_lock_lock(curl_simple_lock *lock)
 {