作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我想使用 WinAPI 中的 InterlockedExchange 来使用线程的无锁同步。
目前我有这样的类(class)。
struct DataExchange
{
volatile LONG m_value;
void SetValue(LONG newVal)
{
InterlockedExchange(&m_value, newVal);
}
LONG GetValue()
{
LONG workVal=0;
InterlockedExchange(&workVal, m_value);
return workVal;
}
};
一个线程可以设置一个新值,另一个线程可以读取这个值。
现在我要做的是将 LONG
值更改为 struct
。在 WinAPI 中有什么方法可以复制 struct
无锁?
最佳答案
不,除非您可以将您的结构放入 32 位,在这种情况下您可以继续使用 InterlockedExchange。
关于c++ - 结构的互锁交换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6109810/
我是一名优秀的程序员,十分优秀!