眼睛大人生

文章
4
资源
0
加入时间
2年10月24天

c++ concurrency in action中的 SpinLockMutex

如下:class spinlock_mutex{ std::atomic_flag flag;public: spinlock_mutex() : flag(ATOMIC_FLAG_INIT) { } void lock() { while (flag.test_and_set(std::memory_order_acquire)); } void unlock...