std::async in clang 3.0 + libc++ 不起作用?

std::async in clang 3.0 + libc++ doesn't work?

本文关键字:libc++ 不起作用 async in clang std      更新时间:2023-10-16

我刚刚在我的ubuntu 10.04上编译并安装了clang+llvm 3.0,并从svn上安装了libc++。由于libc++中的状态显示线程支持是完整的,我想尝试std::async。所以我遵循Anthony Williams在

中给出的例子

http://www.justsoftwaresolutions.co.uk/threading/multithreading-in-c + + 0 x-part-8-futures-and-promises.html

做一个小的改变使它可以编译:

#include <future>
#include <iostream>
int calculate_the_answer_to_LtUaE()
{
  return 42;
}
void do_stuff()
{
  std::cout << "doing stuff" << std::endl;
}
int main()
{
  std::future<int> the_answer=std::async(calculate_the_answer_to_LtUaE);
  do_stuff();
  std::cout<<"The answer to life, the universe and everything is "
    <<the_answer.get()<<std::endl;
}

我用

编译

clang++——std=c++0x -stdlib=libc++ -lpthread async.cpp

但是,它运行并且总是以核心转储结束:

做东西生命、宇宙和一切的答案都被终止了

我检查核心转储,它显示的堆栈是这样的(我没有得到一个提示)

<>之前#0 0x00007fd0a1a7ba75在raise () from/lib/lib .so.6#1 0x00007fd0a1a7f5c0 in abort () from/lib/lib .so.6#2 0x00007fd0a22a735b在std::exception_ptr::~exception_ptr (this=) at ./src/exception.cpp:130#3 0x0000000000404178无效std::__1::__assoc_state::set_value(int&&) ()#4 0x00000000004051ae in _ZNSt3__119__async_assoc_stateIiNS_12__async_funcIPFivEJEEEE9__executeEv ()#5 0x0000000000404e00在_ZNSt3__114__thread_proxyINS_5tupleIJMNS_19__async_assoc_stateIiNS_12__async_funcIPFivEJEEEEEFvvEPS7_EEEEEPvSC_ ()#6 0x00007fd0a250f9ca在start_thread()从/lib/libpthread.so.0#7 0x00007fd0a1b2e70d在克隆()从/lib/lib .so.6#8 0x0000000000000000 in ??()之前

有人知道为什么吗?

我在OS X Lion上运行了您的示例,使用:

clang++ -std=c++0x -stdlib=libc++ async.cpp

程序输出:

doing stuff
The answer to life, the universe and everything is 42

根据moshbear的注释检查libc++的源代码:

exception_ptr::~exception_ptr() _NOEXCEPT
{
#if HAVE_DEPENDENT_EH_ABI
    __cxa_decrement_exception_refcount(__ptr_);
#else
    #warning exception_ptr not yet implemented
    ::abort();
#endif  // __APPLE__
}

在我看来,~exception_ptr()还没有移植到ubuntu 10.04。这是一个在可移植c++中无法实现的低级工具。lib++ abi正在进行创建该级别的无gpl实现的工作。我可以向您保证,libc++abi目前还没有准备好。

在这个低级库上也有一个独立的努力:https://github.com/pathscale/libcxxrt。我不知道这个库的状态,也不知道它是否已经移植到ubuntu。