lockfree
Lock-free is a property of concurrent algorithms and data structures that allows multiple threads to operate without using mutual-exclusion locks. In a lock-free design, the system guarantees that some thread makes progress in a finite number of steps, even if other threads are delayed or fail. This contrasts with lock-based synchronization, where a thread holding a lock can prevent progress for others.
Lock-free is a form of non-blocking synchronization. It is related to, but distinct from, wait-free and obstruction-free
Common lock-free data structures include stacks, queues, and linked lists implemented with pointer manipulation and atomic
Advantages of lock-free approaches include resilience to thread delays, bounded pause times, and reduced risk of
See also: non-blocking synchronization, wait-free, concurrent data structure, memory reclamation.