Expand description
Lock-free intrusive linked list.
Ideas from Michael. High Performance Dynamic Lock-Free Hash Tables and List-Based Sets. SPAA 2002. http://dl.acm.org/citation.cfm?id=564870.564881
Structsยง
- Entry ๐
- An entry in a linked list.
- Iter ๐
- An iterator used for retrieving values from the list.
- List ๐
- A lock-free, intrusive linked list of type
T.
Enumsยง
- Iter
Error ๐ - An error that occurs during iteration over the list.
Traitsยง
- IsElement ๐
- Implementing this trait asserts that the type
Tcan be used as an element in the intrusive linked list defined in this module.Thas to contain (or otherwise be linked to) an instance ofEntry.