The naive boolean negation
std::atomic_bool b;
b = !b;
does not seem to be atomic. I suspect this is because operator! triggers a cast to plain bool. How would one atomically perform the equivalent negation? The following code illustrates that the naive negation isn't atomic:
#include <thread>
#include <vector>
#include <atomic>
#include <iostream>
typedef std::atomic_bool Bool;
void flipAHundredThousandTimes(Bool& foo) {
for (size_t i = 0; i < 100000; ++i) {
foo = !foo;
}
}
// Launch nThreads std::threads. Each thread calls flipAHundredThousandTimes
// on the same boolean
void launchThreads(Bool& foo, size_t nThreads) {
std::vector<std::thread> threads;
for (size_t i = 0; i < nThreads; ++i) {
threads.emplace_back(flipAHundredThousandTimes, std::ref(foo));
}
for (auto& thread : threads) thread.join();
}
int main() {
std::cout << std::boolalpha;
Bool foo{true};
// launch and join 10 threads, 20 times.
for (int i = 0; i < 20; ++i) {
launchThreads(foo, 10);
std::cout << "Result (should be true): " << foo << "\n";
}
}
The code launches 10 threads, each of which flips the atomic_bool a larrge, even, number of times (100000), and prints out the boolean. This is repeated 20 times.
EDIT: For those who want to run this code, I am using a GCC 4.7 snapshot on ubuntu 11.10 with two cores. The compilation options are:
-std=c++0x -Wall -pedantic-errors -pthread
std::atomic_boolandstd::atomic<bool>don't have boolean operators likeoperator!. So!bdoes indeed involve the (implicit) conversion operator of atomic types. I'm not making this an answer as I'm unsure on how to provide the functionality you need. – Luc Danton Mar 21 '12 at 14:15operator!for atomics, so I'm sure the conversion happens, and it is most likely the cause of the race. – juanchopanza Mar 21 '12 at 14:19terminate called after throwing an instance of 'std::system_error'– BЈовић Mar 21 '12 at 14:21-pthreadwhen compiling the program. – Luc Danton Mar 21 '12 at 14:25