Skip to content

Commit 5443182

Browse files
committed
Rebasing and adding initial commit of the Concurrency Chapter
1 parent 3279c0e commit 5443182

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/concurrency.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
r[concurrency]
2+
# Concurrency
3+
4+
r[concurrency.intro]
5+
Rust provides language and library features for writing concurrent programs. These features are designed to prevent data races --- situations in which multiple threads access the same memory without proper synchronization, with at least one of the accesses modifying that memory.
6+
7+
This chapter describes the traits, types, and concepts that Rust uses to express and enforce safe concurrency.

0 commit comments

Comments
 (0)