C++11 atomic_exchange 实现无锁链表

#include <atomic>
#include <thread>
#include <iostream>
using namespace std;

#define THREAD_NUM 32 // 测试用的线程数


template<typename T>
class LockFreeStack {
public:
    LockFreeStack() {
        head_ = nullptr;
    }

    void Push(const T& value) {
        Node* newNode = new Node(value);

        // 将新节点的 next 指针指向 head_
        newNode->next = head_;
        while(!atomic_compare_exchange_weak(&head_, &newNode->next, newNode));
    }

    bool Pop(T& item) {
        Node* oldHead = head_;

        do {
            if(!oldHead) {
                return false; // 空栈,返回 false 表示操作失败
            }
        } while(!atomic_compare_exchange_weak(&head_, &oldHead, oldHead->next));

        item = oldHead->data;
        delete oldHead;
        return true;
    }

private:
    struct Node {
        T data;
        Node* next;

        Node(const T& data) : data(data), next(nullptr) {}
    };

    atomic<Node*> head_;
};

LockFreeStack<int> stack;

void TestPush(int id) {
    for(int i = 0; i < 1000; ++i) {
        stack.Push(i * THREAD_NUM + id);
    }
}

void TestPop() {
    int item;
    int count = 0;
    while(stack.Pop(item)) {
        count++;
    }
    cout << "Thread " << std::this_thread::get_id() << " got " << count << " items." << endl;
}

int main() {
    thread producers[THREAD_NUM];
    for(int i = 0; i < THREAD_NUM; ++i) {
        producers[i] = thread(TestPush, i);
    }

    thread consumer1(TestPop);
    thread consumer2(TestPop);

    for(int i = 0; i < THREAD_NUM; ++i) {
        producers[i].join();
    }

    consumer1.join();
    consumer2.join();

    return 0;
}
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值