Local variables in C++ and thread safety

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello.
Are automatic variables (that are defined in functions, lambdas, blocks) in C++11 thread local? Is the following code correct:

auto f1 = [&](const double x) {
   double y = sin(x);
   SomeClass1 obj1;
   double z = obj1.f2(y);
   return cos(z);
}

// Some function which creates several threads which call f1.
calculate_parallel(f1);

Kind regards, Petr.




[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux