使用boost :: mutex和MFC线程(AfxBeginThread)?

时间:2011-10-22 06:01:58

标签: c++ multithreading mfc mutex boost-thread

当你使用boost :: thread而是通过AfxBeginThread使用MFC线程功能时,你能使用boost :: mutex库保护代码的关键部分吗?如果是这样,这样做有什么问题吗?

2 个答案:

答案 0 :(得分:1)

(真实)线程是(真实)线程。

Boost对直接创建线程(Windows API)或通过Boost创建的事实没有特别的假设。

简短回答:

没问题。

答案 1 :(得分:0)

是的,你可以。没有问题,因为两者都在后台使用Win32 API。