gpt4 book ai didi

c++ - 如果大于则无锁增量

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:19:39 25 4
gpt4 key购买 nike

是否有人知道一种无锁方式来执行逻辑上等同于 compare_and_swap_if_greater_than() 的操作?我们有 compare_and_swap(),它实际上是 compare_and_swap_if_equal()。我现在最好的方法是使用自旋互斥锁,但我认为巧妙地使用历史变量、循环和 compare_and_swap() 可能可以避免这种情况。

最佳答案

这个怎么样:

public static void CompareAndSwapIfGreaterThan(ref int location, int newValue) {
while(true) {
var currentValue=Thread.VolatileRead(ref location);
if(newValue<=currentValue
|| Interlocked.CompareExchange(ref location, newValue, currentValue)==currentValue) {
return;
}
}
}

关于c++ - 如果大于则无锁增量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7479698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com