summaryrefslogtreecommitdiff
path: root/exercises/threads
diff options
context:
space:
mode:
authorZerotask <Zerotask@users.noreply.github.com>2021-04-23 19:54:31 +0200
committerZerotask <Zerotask@users.noreply.github.com>2021-04-23 19:54:31 +0200
commit249ad44cc03974fd34708c23d9832b1729c6e844 (patch)
treedb25c5f51d76d10bc129dbcc8df2c56c75b13f2b /exercises/threads
parent54804e344d84bb620447b7975a5b8ec4f9de2671 (diff)
docs(exercises): updated all exercises readme files
all exercises readme files now have a unified structure and a description
Diffstat (limited to 'exercises/threads')
-rw-r--r--exercises/threads/README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/exercises/threads/README.md b/exercises/threads/README.md
index 2024292..d086694 100644
--- a/exercises/threads/README.md
+++ b/exercises/threads/README.md
@@ -1 +1,9 @@
-For this exercise check out the [Dining Philosophers example](https://doc.rust-lang.org/1.4.0/book/dining-philosophers.html) and the chapter [Concurrency](https://doc.rust-lang.org/book/ch16-01-threads.html) of the Rust Book. \ No newline at end of file
+# Threads
+
+In most current operating systems, an executed program’s code is run in a process, and the operating system manages multiple processes at once.
+Within your program, you can also have independent parts that run simultaneously. The features that run these independent parts are called threads.
+
+## Further information
+
+- [Dining Philosophers example](https://doc.rust-lang.org/1.4.0/book/dining-philosophers.html)
+- [Using Threads to Run Code Simultaneously](https://doc.rust-lang.org/book/ch16-01-threads.html)