summaryrefslogtreecommitdiff
path: root/zen/globals.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-05-10 08:05:45 -0400
committerB. Stack <bgstack15@gmail.com>2021-05-10 08:05:45 -0400
commit0d0f8635218a2893fcd00385019089253474f634 (patch)
tree9261c60b81eb28e068f0f2f44fd8e60214462b2a /zen/globals.h
parentMerge branch '11.9' into 'master' (diff)
downloadFreeFileSync-0d0f8635218a2893fcd00385019089253474f634.tar.gz
FreeFileSync-0d0f8635218a2893fcd00385019089253474f634.tar.bz2
FreeFileSync-0d0f8635218a2893fcd00385019089253474f634.zip
add upstream 11.10
Diffstat (limited to 'zen/globals.h')
-rw-r--r--zen/globals.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/zen/globals.h b/zen/globals.h
index 47da2ac4..6a50a497 100644
--- a/zen/globals.h
+++ b/zen/globals.h
@@ -211,10 +211,6 @@ void registerGlobalForDestruction(CleanUpEntry& entry)
}
//------------------------------------------------------------------------------------------
- #ifdef __cpp_lib_atomic_wait
- #error implement + rewiew improvements
- #endif
-
inline
bool PodSpinMutex::tryLock()
@@ -227,11 +223,7 @@ inline
void PodSpinMutex::lock()
{
while (!tryLock())
-#ifdef __cpp_lib_atomic_wait
flag_.wait(true, std::memory_order_relaxed);
-#else
- ;
-#endif
}
@@ -239,9 +231,7 @@ inline
void PodSpinMutex::unlock()
{
flag_.clear(std::memory_order_release);
-#ifdef __cpp_lib_atomic_wait
flag_.notify_one();
-#endif
}
bgstack15