在 ActiveX 控件中使用时 boost::mutex 标头是否存在已知问题?
(Boost 版本 v1.39)
如果我在 Visual Studio 2008 中创建一个名为 "DefaultOCXControl" 的 MFC ActiveX Control 项目,那么我可以构建它,该控件将自身注册为构建的一部分,并且可以按照您的预期插入到 ActiveX 测试容器中.一切都很好.
If I create an MFC ActiveX Control project in Visual Studio 2008 called "DefaultOCXControl" then I can build it, the control registers itself as part of the build, and can be inserted into the ActiveX Test Container as you would expect. All good.
如果我再添加这一行:
#include <boost/thread/mutex.hpp>
在我的 DefaultOCXControlCtrl.h
文件的顶部并重新构建:构建结束时的注册步骤失败:
at the top of my DefaultOCXControlCtrl.h
file and rebuild: the registration step at the end of the build fails with:
调试断言失败!
程序:C:Windowssystem32
egsvr32.exe
文件:f:ddvctoolsvc7libsshipatlmfcsrcmfcdllinit.cpp
行:587
Debug Assertion Failed!
Program: C:Windowssystem32 egsvr32.exe
File: f:ddvctoolsvc7libsshipatlmfcsrcmfcdllinit.cpp
Line: 587
违规断言如下所示:
void AFXAPI AfxCoreInitModule()
{
ASSERT(AfxGetModuleState() != AfxGetAppModuleState());
...
现在尝试将控件插入 ActiveX 测试容器会产生相同的消息.如果我删除该行并重新构建,那么一切都很好 - 所以它肯定是该头文件中的某些内容导致了问题.
Attempting to insert the control into the ActiveX Test Container now results in the same message. If I remove the line and rebuild then everything is fine - so it definitely seems to be something in that header file that causes the issue.
您是否尝试过动态链接 boost::thread
(定义 BOOST_THREAD_DYN_LINK)?
Have you tried linking boost::thread
dynamically (define BOOST_THREAD_DYN_LINK)?
我在将 boost::thread
与混合 C++/.NET 项目一起使用时遇到了这种问题,并且只动态链接 boost::thread
是解决方案(这里一个可能的解释:http://article.gmane.org/gmane.comp.lib.boost.user/22617/match=clr)
I had this kind of problems when using boost::thread
with a mixed C++/.NET project and linking just boost::thread
dynamically was the solution (here a possible explanation: http://article.gmane.org/gmane.comp.lib.boost.user/22617/match=clr)
这篇关于添加 #include <boost/thread/mutex.hpp>破坏了我的 ActiveX 控件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!