OK so I've been told that this code isn't thread safe.
#include <iostream>
#include <thread>
static int sum[5];
static int get_sum()
{
int x=0;
for (int j=0;j<5;++j)
x += sum[j];
return x;
}
static void f1(int x){
sum[x] = 1;
std::cout << "f" <<x << ": " << sum[x] << " : " << get_sum() << std::endl;
}
int main() {
for (int j=0;j<5;++j)
sum[j] = 0;
std::thread t0(f1, 0);
std::thread t1(f1, 1);
std::thread t2(f1, 2);
std::thread t3(f1, 3);
std::thread t4(f1, 4);
while (get_sum() != 5) ;
t0.join();
t1.join();
t2.join();
t3.join();
t4.join();
std::cout << "final: " << get_sum() << std::endl;
}
Can someone explain to me why the program might fail to complete? I know the running values of get_sum will be non-deterministic and the output from cout will be randomly interleaved but that's not relevant to the program completing.
whileloop. – David Schwartz Dec 5 '12 at 1:06volatilehas no guaranteed semantics for multi-threaded code. (Actually, it's fortunate. If it did, that would slow down code that usedvolatilefor its intended purposes.) Specifically,volatileis not an exception to the rule that concurrent reads and modifications are prohibited by the standard. See my answer for why it's not smart to try to think of all the ways it could fail and fix them. – David Schwartz Dec 5 '12 at 1:14