1

我有一些使用本机线程的代码。我想修改其中的一小部分,但使用一些增强功能。特别是,我想使用 boost::mutex::scoped_lock() 和 boost::condition 的 notify() 和 wait() 函数。

将 boost 同步与非 boost 线程一起使用有什么问题吗?在 Windows 中?在 Linux 红帽?(我知道它下面是本机线程,但想问一下以确定。)

谢谢。

4

1 回答 1

0

您可以使用大部分 Boost.Thread 同步接口。

看看http://www.boost.org/doc/libs/1_55_0/doc/html/thread/thread_management.html#thread.thread_management.tutorial.native_from

于 2013-12-21T19:29:34.227 回答