atomic-story

Crates.ioatomic-story
lib.rsatomic-story
version0.1.1
sourcesrc
created_at2021-12-28 19:07:57.201984
updated_at2022-01-03 09:47:37.526886
descriptionAn brief overview of atomics and memory ordering on a multi-threaded context with examples.
homepage
repositoryhttps://github.com/blasrodri/atomic-story
max_upload_size
id504357
size10,452
Blas Rodriguez Irizar (blasrodri)

documentation

https://docs.rs/atomic-story

README

Atomic Story

Understanding atomics and memory ordering takes time, and it might also be a painful journey. This is mine.

I felt that having a repo with simple unit tests would help me enhance my understanding on the topic. Besides, it's a very compact way of knowledge transfer - that's why I am making this public.

Anatomy

Counter one writer one reader

This is the simples example. Using Relaxed is more than enough, since we're only checking the final value after all threads have incremented the value.

Two numbers with a dependency between them.

This example is more interesting. There are two threads: a writer and a reader. And two values, num_a and num_b. This exmample explores different Ordering combinations, and how they can yield different results.

How to run the tests/examples

They are just Rust tests. Run:

cargo test
Commit count: 11

cargo fmt