From 498e44d87a93183ac04690e09a39fee47dfe85b0 Mon Sep 17 00:00:00 2001 From: Alexis Beingessner Date: Tue, 7 Jul 2015 21:30:14 -0700 Subject: [PATCH] new chapter for reals --- arc-and-mutex.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 arc-and-mutex.md diff --git a/arc-and-mutex.md b/arc-and-mutex.md new file mode 100644 index 00000000000..d28180fa9cf --- /dev/null +++ b/arc-and-mutex.md @@ -0,0 +1,7 @@ +% Implementing Arc and Mutex + +Knowing the theory is all fine and good, but the *best* was to understand +something is to use it. To better understand atomics and interior mutability, +we'll be implementing versions of the standard library's Arc and Mutex types. + +TODO: ALL OF THIS OMG