Przeglądaj źródła

thread: do not join std::thread instances.

For some reasons std::thread can’t be joined in Visual Studio 2013. Needs
more investigation but right now it’s Ludum Dare and I don’t have time.
undefined
Sam Hocevar 9 lat temu
rodzic
commit
bc2684fd40
1 zmienionych plików z 3 dodań i 1 usunięć
  1. +3
    -1
      src/sys/threadbase.h

+ 3
- 1
src/sys/threadbase.h Wyświetl plik

@@ -428,7 +428,9 @@ public:
#if !defined(LOL_FEATURE_THREADS) || !LOL_FEATURE_THREADS
/* Nothing */
#elif LOL_FEATURE_CXX11_THREADS
m_thread.join();
/* FIXME: this does not work in Visual Studio 2013! */
//m_thread.join();
m_thread.detach();
#elif defined HAVE_PTHREAD_H
pthread_join(m_thread, nullptr);
#elif defined _WIN32


Ładowanie…
Anuluj
Zapisz