如何使用原子增量和比较和交换操作处理整数溢出?
我正在编写一些实现(无符号)整数计数器的代码。
- 它可以从任意数量的线程中使用。
- 线程每次都应该获得唯一的值,直到溢出。
- 如果整数类型范围溢出,则应返回零。
- 我可以使用原子增量函数(返回旧值)和原子比较和交换函数。
到目前为止,我提出的所有场景都受到溢出竞争条件的影响。是否可以在这些限制下实现计数器?
I am writing a bit of code that implements an (unsigned) integer counter.
- It is used from an arbitrary number of threads.
- A thread should get a unique value every time until overflow.
- If integer type range is overflown, zero should be returned.
- I have at my disposal atomic increment function (returns old value), and atomic compare-and-swap function.
All scenarios I have come up with so far suffer from race conditions on overflow. Is it possible to implement the counter with these constraints?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过比较和交换来构建一切。一般算法是
(我假设
compare_and_swap
接受一个变量、一个比较值和一个交换值,如果比较成功(并且交换值),则返回true
发生)。You can build everything from compare-and-swap. The general algorithm is
(I'm assuming that
compare_and_swap
takes a variable, a comparison value, and a swap value, and it returnstrue
if the comparison succeeded (and the swap occurred).