File tree Expand file tree Collapse file tree 9 files changed +18
-9
lines changed Expand file tree Collapse file tree 9 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -21,5 +21,14 @@ git-repository-url = "https://github.com/rust-lang/nomicon"
21
21
"/vec-zsts.html" = " /vec/vec-zsts.html"
22
22
"/vec.html" = " /vec/vec.html"
23
23
24
+ # Arc and Mutex related chapters.
25
+ "/arc-and-mutex.html" = " /arc-mutex/arc-and-mutex.html"
26
+ "/arc-base.html" = " /arc-mutex/arc-base.html"
27
+ "/arc-clone.html" = " /arc-mutex/arc-clone.html"
28
+ "/arc-drop.html" = " /arc-mutex/arc-drop.html"
29
+ "/arc-final.html" = " /arc-mutex/arc-final.html"
30
+ "/arc-layout.html" = " /arc-mutex/arc-layout.html"
31
+ "/arc.html" = " /arc-mutex/arc.html"
32
+
24
33
[rust ]
25
34
edition = " 2018"
Original file line number Diff line number Diff line change 54
54
* [ Drain] ( ./vec/vec-drain.md )
55
55
* [ Handling Zero-Sized Types] ( ./vec/vec-zsts.md )
56
56
* [ Final Code] ( ./vec/vec-final.md )
57
- * [ Implementing Arc and Mutex] ( arc-and-mutex.md )
58
- * [ Arc] ( arc.md )
59
- * [ Layout] ( arc-layout.md )
60
- * [ Base Code] ( arc-base.md )
61
- * [ Cloning] ( arc-clone.md )
62
- * [ Dropping] ( arc-drop.md )
63
- * [ Final Code] ( arc-final.md )
57
+ * [ Implementing Arc and Mutex] ( ./arc-mutex/ arc-and-mutex.md)
58
+ * [ Arc] ( ./arc-mutex/ arc.md)
59
+ * [ Layout] ( ./arc-mutex/ arc-layout.md)
60
+ * [ Base Code] ( ./arc-mutex/ arc-base.md)
61
+ * [ Cloning] ( ./arc-mutex/ arc-clone.md)
62
+ * [ Dropping] ( ./arc-mutex/ arc-drop.md)
63
+ * [ Final Code] ( ./arc-mutex/ arc-final.md)
64
64
* [ FFI] ( ffi.md )
65
65
* [ Beneath ` std ` ] ( beneath-std.md )
66
66
* [ #[ panic_handler]] ( panic-handler.md )
Original file line number Diff line number Diff line change 2
2
3
3
Knowing the theory is all fine and good, but the * best* way to understand
4
4
something is to use it. To better understand atomics and interior mutability,
5
- we'll be implementing versions of the standard library's Arc and Mutex types.
5
+ we'll be implementing versions of the standard library's ` Arc ` and ` Mutex ` types.
6
6
7
- TODO: Mutex
7
+ TODO: Write ` Mutex ` chapters.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments