C ++ 11异步分段错误

时间:2013-06-25 20:57:31

标签: multithreading asynchronous c++11

有人可以在这里解释我做错了什么:

#include <future>
#include <iostream>


int main() {    
    std::future<int> result( std::async([](int m) { return m+1;}, 2));
    std::cout << "In main" << std::endl;
    std::cout << result.get();
}

使用GCC 4.8或4.9,我得到分段错误。     :

./a.out:


 In main
        Segmentation fault: 11



    : /opt/local/bin/g++-mp-4.8 -v
    Using built-in specs.
    COLLECT_GCC=/opt/local/bin/g++-mp-4.8
    COLLECT_LTO_WRAPPER=/opt/local/libexec/gcc/x86_64-apple-darwin12/4.8.1/lto-wrapper
    Target: x86_64-apple-darwin12
    Configured with: ../gcc-4.8.1/configure --prefix=/opt/local --build=x86_64-apple-darwin12 --enable-languages=c,c++,objc,obj-c++,lto,fortran,java --libdir=/opt/local/lib/gcc48 --includedir=/opt/local/include/gcc48 --infodir=/opt/local/share/info --mandir=/opt/local/share/man --datarootdir=/opt/local/share/gcc-4.8 --with-local-prefix=/opt/local --with-system-zlib --disable-nls --program-suffix=-mp-4.8 --with-gxx-include-dir=/opt/local/include/gcc48/c++/ --with-gmp=/opt/local --with-mpfr=/opt/local --with-mpc=/opt/local --with-ppl=/opt/local --with-cloog=/opt/local --enable-cloog-backend=isl --disable-cloog-version-check --enable-stage1-checking --disable-multilib --enable-lto --enable-libstdcxx-time --with-as=/opt/local/bin/as --with-ld=/opt/local/bin/ld --with-ar=/opt/local/bin/ar --with-bugurl=https://trac.macports.org/newticket --with-pkgversion='MacPorts gcc48 4.8.1_0'
    Thread model: posix
    gcc version 4.8.1 (MacPorts gcc48 4.8.1_0)

编辑:有些人指出了另一个与pthread相关的答案。这并没有解决问题:

: /opt/local/bin/g++-mp-4.8 -std=c++11 -lpthread thread5.cc
: ./a.out
In main
Segmentation fault: 11

1 个答案:

答案 0 :(得分:0)

我用clang 3.2(apple llvm 4.2)测试了代码,运行得很好。它返回

In main
3

修改 还有其他人用gcc 4.8.1进行测试,它的工作原理。最可能的问题是你链接到默认的pthread库而不是macports的gcc 4.8.1附带的那个