lock-free
lock free containers and visibility
I\'ve seen some lock free implementations of stack... My question is regarding the visibility, not atomicity. For example do elements(not pointers) of lock free stack must be at most 64bit? I think so[详细]
2023-04-09 04:38 分类:问答Lock-free algorithm library
Is there a library that implements lock-free algorithms(queue, linked list and others) written in C (not in C++)开发者_开发技巧? I\'ve taken a look at some libraries like Intel\'s, but I would like to[详细]
2023-03-16 23:56 分类:问答How to achieve lock-free, but blocking behavior?
I\'m implementing a lock-free single producer single consumer queue for an intensive network application. I have a bunch of worker th开发者_JAVA技巧reads receiving work in their own separate queues, w[详细]
2023-03-07 11:03 分类:问答lock free queue enqueue if not empty
I have implemented a lock free queue in C using compare and swap based on http://www.boyet.com/articles/LockfreeQueue.html.[详细]
2023-03-02 15:47 分类:问答In a multithreaded app, how would I use the atomic builtins to set/view a time_t value?
I have an app that is highly threaded. The threads in this app read from a shared memory mapped file.You can assume they never write to it.[详细]
2023-02-12 05:05 分类:问答Lock free & Thread-Safe IList<T> for .NET
Is there a lock-free & thread-safe data structure that implements IList? Naturally by lock-free I mean an implementation that makes no use of locking primitives in .NET but rather uses interlocke[详细]
2023-02-12 04:56 分类:问答Average latency of atomics cmpxchg instructions on Intel Cpus
I am looking for some refe开发者_高级运维rence on average latencies for lock cmpxchg instruction for various intel processors. I am not able to locate any good reference on the topic and any referen[详细]
2023-01-25 19:19 分类:问答Multiprocessor programming: lock-free stacks
In preperation for my upcoming Concurrent Systems exam, I am trying to complete some questions from the text book \"The Art of Multiprocessor Programming\". One question is bugging me:[详细]
2023-01-22 19:02 分类:问答Lock-free implementation of a Thread Library
I have been going through a few published papers which details algorithms and data structures which can be used for implementation of a thread library. I searched online to view any existing implement[详细]
2023-01-22 07:02 分类:问答Looking for lock-free container [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.[详细]
2023-01-12 01:38 分类:问答