gpt4 book ai didi

c++ - boost 协程在 Windows x86_64 上不起作用吗?

转载 作者:行者123 更新时间:2023-11-28 03:26:19 25 4
gpt4 key购买 nike

我将 boost::coroutines::coroutine 附带的示例 parallel.cpp 编译为 32 位和 64 位程序。

它们编译和链接都没有错误。32 位程序按预期运行和运行,但 64 位应用程序在启动时崩溃。

在 Windows 7 64 位上使用 Visual Studio 2012 Express。

编辑:协程已被 boost 接受,但尚未作为 boost 分发的一部分发布。我使用了作者“最终”版本中的示例。

编辑:这是代码

#include <boost/bind.hpp>
#include <boost/coroutine/all.hpp>

typedef boost::coroutines::coroutine< void() > coroutine_t;

void first( coroutine_t::caller_type & self)
{
std::cout << "started first! ";
for ( int i = 0; i < 10; ++i)
{
self();
std::cout << "a" << i;
}
}

void second( coroutine_t::caller_type & self)
{
std::cout << "started second! ";
for ( int i = 0; i < 10; ++i)
{
self();
std::cout << "b" << i;
}
}

int main( int argc, char * argv[])
{
{
coroutine_t c1( boost::bind( first, _1) );
coroutine_t c2( boost::bind( second, _1) );
while ( c1 && c2) {
c1();
std::cout << " ";
c2();
std::cout << " ";
}
}

std::cout << "\nDone" << std::endl;

return EXIT_SUCCESS;
}

最佳答案

使用来自 boost-trunk 的最新版本 - 包含最新版本的 boost.coroutine + boost.context(由 boost.coroutine 用于上下文交换)首先尝试构建单元测试 (/libs/coroutine/test)

关于c++ - boost 协程在 Windows x86_64 上不起作用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13822368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com