From: Daniel Stenberg Date: Tue, 28 Jun 2022 07:00:25 +0000 (+0200) Subject: easy_lock: switch to using atomic_int instead of bool X-Git-Tag: curl-7_85_0~225 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=50efb0822aa0e0ab165158dd0a26e65a2290e6d2;p=thirdparty%2Fcurl.git easy_lock: switch to using atomic_int instead of bool 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 --- diff --git a/lib/easy_lock.h b/lib/easy_lock.h index 07c85c5ffd..9c11bc50c5 100644 --- a/lib/easy_lock.h +++ b/lib/easy_lock.h @@ -40,8 +40,8 @@ #include #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) {