[Day1] Read Rust Atomics and Locks
At Topics
until: Operating systems isolate…….
Notes
- This book is for people would like to know what low-level concurrency looks like from a Rust perspective
- Tools and concepts for basic concurrency in Rust: threads, mutexes, thread safety, shared and exclusive references, interior mutability etc.
- Operating systems isolate processes from each other as much as possible, allowing a program to do its thing while completely unaware of what any other processes are doing.