瀏覽代碼

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 年之前
父節點
當前提交
bc2684fd40
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      src/sys/threadbase.h

+ 3
- 1
src/sys/threadbase.h 查看文件

@@ -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


Loading…
取消
儲存