gcc是否支持unique_locks?

时间:2010-12-15 19:42:55

标签: multithreading gcc c++11 unique


我想在我的代码中使用线程,并认为即将推出的C ++ 0x扩展会很方便,因为它们最终将成为标准。这似乎是面向未来的,无需使用像boost :: thread这样的额外库 遗憾的是,我无法找到有关gcc目前支持哪些线程功能的有用信息。我正在使用看起来不起作用的unique_locks。这是链接器的输出:

.build_debug/src/core/simulator.o: In function `Simulator::start(int, int, int, int)':
simulator.cpp:(.text+0x1fc): undefined reference to `_ZSt4lockISt11unique_lockISt5mutexES2_IEEvRT_RT0_DpRT1_'
.build_debug/src/core/simulator.o: In function `Simulator::resume()':
simulator.cpp:(.text+0x351): undefined reference to `_ZSt4lockISt11unique_lockISt5mutexES2_IEEvRT_RT0_DpRT1_'
.build_debug/src/core/simulator.o: In function `Simulator::pause()':
simulator.cpp:(.text+0x417): undefined reference to `_ZSt4lockISt11unique_lockISt5mutexES2_IEEvRT_RT0_DpRT1_'
.build_debug/src/core/simulator.o: In function `Simulator::stop()':
simulator.cpp:(.text+0x4cd): undefined reference to `_ZSt4lockISt11unique_lockISt5mutexES2_IEEvRT_RT0_DpRT1_'

有人理解这些消息吗?我猜他们指的是unique_locks的用法。但为什么会出现这些错误?

我的源代码类似于这一个:
    std::unique_lock<std::mutex> lkIntra(intraMtx, std::defer_lock); std::unique_lock<std::mutex> lkInter(interMtx, std::defer_lock); std::lock(lkIntra, lkInter);

编辑:我试图用gcc 4.3.X和4.4.5编译它。链接器是g ++ 4.3,4.4和4.5。

EDIT2:我只是尝试使用std-threads的boost等价物。添加编译器标志“-lboost_thread”后,编译工作正常。没有它,链接过程就会产生类似的错误消息。现在我想知道在使用标准线程时我是否需要做同样的事情(我已经尝试过“-lpthread”)。

1 个答案:

答案 0 :(得分:1)

G ++的当前开发版本支持它:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00729.html

4.5.1版本似乎没有(至少对我来说,在Mac OS Intel上)。