#data-structures #atomic

lockfree

This crate provides concurrent data structures and a solution to the ABA problem as an alternative of hazard pointers

11 releases (4 breaking)

Uses old Rust 2015

0.5.1 Nov 18, 2018
0.5.0 Nov 17, 2018
0.4.1 Nov 11, 2018
0.3.2 Nov 4, 2018
0.1.1 Jun 15, 2018

#274 in Concurrency

Download history 2660/week @ 2023-11-20 4547/week @ 2023-11-27 4347/week @ 2023-12-04 4249/week @ 2023-12-11 3360/week @ 2023-12-18 1716/week @ 2023-12-25 2865/week @ 2024-01-01 3630/week @ 2024-01-08 4639/week @ 2024-01-15 4066/week @ 2024-01-22 4841/week @ 2024-01-29 12033/week @ 2024-02-05 8789/week @ 2024-02-12 6595/week @ 2024-02-19 5795/week @ 2024-02-26 6391/week @ 2024-03-04

29,665 downloads per month
Used in 113 crates (14 directly)

MIT license

260KB
5.5K SLoC

lockfree

Lockfree data structures for Rust.

We currently have:

  • Per-Object Thread-Local Storage
  • Map
  • Set
  • Queue
  • Stack
  • SPSC, MPSC, SPMC and MPMC channels

Documentation for the Lastest Commit

https://bzim.gitlab.io/lockfree/lockfree/

Changelog

See CHANGELOG.md

Contributing

See CONTRIBUTING.md

Benchmarks

See BENCHMARKS.md

C11 Incinerator Implementation

https://gitlab.com/bzim/c11-incinerator/


lib.rs:

A crate providing lock-free data structures and a solution for the "ABA problem" related to pointers.

The incinerator is the API which tries to solve the "ABA problem" when related to pointer dropping. With incinerator, every thread has a local garbage list. Dropping a shared object consist of first removing the pointer from the shared context, then adding the pointer to the garbage list. A "pause counter" is checked. If the counter is zero, then the whole list is deleted, otherwise, the list will only be deleted later.

This counter is counting how many times the incinerator was asked to "pause". A thread may pause the incinerator to load and use the shared pointer, and this is why it is important to remove the pointer from the shared context before deleting. Previous version of lockfree used a global incinerator. Currently, a per-object incinerator is used.

This crate is under development, and there are plans for some structures. We have:

Performance Guide

In order to achieve a better time performance with lockfree, it is recommended to avoid global locking stuff like heap allocation.

Dependencies