用g ++构建事务性内存C ++代码

时间:2016-08-05 10:09:52

标签: c++ gcc g++ transactional-memory

cppreference网站有一个(work in progress) page describing transactional memory c++ code。这是页面上的第一个例子

#include <iostream>
#include <vector>
#include <thread>
int f()
{
    static int i = 0;
    synchronized { // begin synchronized block
        std::cout << i << " -> ";
        ++i;       // each call to f() obtains a unique value of i
        std::cout << i << '\n';
        return i; // end synchronized block
    }
}
int main()
{
    std::vector<std::thread> v(10);
    for(auto& t: v)
        t = std::thread([]{ for(int n = 0; n < 10; ++n) f(); });
    for(auto& t: v)
        t.join();
}

在该页面的底部,有迹象表明这是基于gcc(// GCC assembly with the attribute:)。

我无法在g ++ 5.3.1上构建这个:

$ g++ --std=c++11 -fgnu-tm -lpthread trx.cpp 
trx.cpp: In function ‘int f()’:
trx.cpp:7:5: error: ‘synchronized’ was not declared in this scope
     synchronized { // begin synchronized block
     ^

$ g++ --help | grep transaction

$ g++ --version
g++ (Ubuntu 5.3.1-14ubuntu2.1) 5.3.1 20160413

gcc文档确实a page on transactional memory,但基元不同(例如,原子块是__transaction_atomic)。相反,cppreference.com上的页面似乎与N3919相关,并使用那里的原语。

如何使用g ++构建此代码?

1 个答案:

答案 0 :(得分:5)

您首先提到的transactional_memory链接说:

  

编译器支持

     

此版本的技术规范由版本6.1的GCC支持(需要-fgnu-tm启用)。

所以除了-std=c++1z之外,您还需要GCC 6(可能also -fgnu-tm ....)