ConcLinkedList icon indicating copy to clipboard operation
ConcLinkedList copied to clipboard

Implementation of concurrent linked list. Lock-based and lock-free versions.

Results 1 ConcLinkedList issues
Sort by recently updated
recently updated
newest added

I implemented a version using the C++ template. In this version, a `llist` is the lock-free list of int32_t type. The only caveat I see is the code run ~10x...