Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经阅读了关于 pthreads 和 OpenMP 的文档并且我理解它们。我已经阅读了这些示例,并使用它们实现了一小部分程序。有没有用 C++ 编写的同时广泛使用线程的生产开源应用程序的好例子?
我能想到的两个是LuxRender和Blender。
为什么不看看线程构建块?对我来说,这是两全其美的 - 像 OpenMP 中的算法级线程和通过 std::thread 和观察者/调度程序进行的低级线程和控制。跨平台,免费,附带很棒的文档和一整套示例。