C++ std::thread completely broken

C++ std::thread completely broken

BY 13 Feb 2017 Native Application Development

Even something as simple as

#include <thread>

int main()
{
  std::thread t([] () { return; });
  t.join();
}

compiled with Tizen Studio 1.1 just crashes… (but using C-style pthread_create works fine)

Written by