mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-11-16 19:50:44 +01:00
Fix #104
This commit is contained in:
parent
be5c0e8bae
commit
2f067058ce
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ and why we might want to use them.
|
|||
## What is a thread?
|
||||
|
||||
A **thread** is an execution context managed by the underlying operating system.\
|
||||
Each thread has its own stack, instruction pointer, and program counter.
|
||||
Each thread has its own stack and instruction pointer.
|
||||
|
||||
A single **process** can manage multiple threads.
|
||||
These threads share the same memory space, which means they can access the same data.
|
||||
|
|
Loading…
Reference in a new issue