Concurrent data structure: Difference between revisions

Content deleted Content added
Uriah123 (talk | contribs)
Uriah123 (talk | contribs)
Line 76:
using special primitive synchronization operations (see [[Synchronization (computer science)#Process_synchronization|synchronization primitives]])
available on modern [[multiprocessing | multiprocessor machine]]s
that allow multiple threads to reach consensus. This consensus can be blocking,reached achieved in a blocking manner by using [[Spinlock | locks]], or without locks, in which case it is [[non-blocking synchronization | non-blocking]]. There is a wide body
of theory on the design of concurrent data structures (see
bibliographical references).