1 Star 0 Fork 0

BostonHsu/PuringMyCPlusPlusTech

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
atomic1.cpp 628 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <iostream> // std::cout
#include <atomic> // std::atomic, std::memory_order_relaxed
#include <thread> // std::thread
std::atomic_int foo(0);
void print_foo()
{
int x;
do
{
x = foo.load(std::memory_order_relaxed); // get value atomically
} while (x == 0);
std::cout << "foo: " << x << '\n';
// std::this_thread::sleep_for(std::chrono::seconds(10));
}
void set_foo(int x)
{
foo.store(x, std::memory_order_relaxed); // set value atomically
}
int main()
{
std::thread first(print_foo);
std::thread second(set_foo, 10);
first.join();
second.join();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/bostonhsu/puring-my-cplus-plus-tech.git
[email protected]:bostonhsu/puring-my-cplus-plus-tech.git
bostonhsu
puring-my-cplus-plus-tech
PuringMyCPlusPlusTech
master

搜索帮助