Skip to content

Commit 846d4b7

Browse files
Update README.md
1 parent 30a4fba commit 846d4b7

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ This project serves as way to learn a little about computer networks, while also
2222

2323
3. **Concurrent Architecture (Thread Pooling)**
2424
1. This server, uses a Thread Pool to handle simultaneous requests.
25-
2. The
25+
2. The :
2626
```Rust
2727
Arc<Mutex<mpsc::Receiver>>
28-
``` Combining Atomic Reference Counting and Mutual Exclusion to safely distribute jobs accros worker threads without data races. I found this to be particular different from C( the lang i usually use at RED), especially the fact that the Mutex is automaticaly "Unlocked", whereas in C, i have to manualy unlock the mutex.
28+
```
29+
Combining Atomic Reference Counting and Mutual Exclusion to safely distribute jobs accros worker threads without data races. I found this to be particular different from C( the lang i usually use at RED), especially the fact that the Mutex is automaticaly "Unlocked", whereas in C, i have to manualy unlock the mutex.
2930
3. Using closures (`FnOnce`) and `Box` to pass tasks efficiently.
3031

3132
## The Project Structure (As of now ...)

0 commit comments

Comments
 (0)