Skip to content

Commit

Permalink
Fix #104
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeMathWalker committed Aug 1, 2024
1 parent be5c0e8 commit 2f06705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/src/07_threads/01_threads.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2f06705

Please sign in to comment.