Home

Threads

  • A process can consist of multiple execution units, called thread.
    • Each run inthe context of the process and share the same code and global data.
    • Incredibly important for the concept of concurrency.
    • Easier to share data between multipe threads than multiple processes.
    • Threads are typically more efficient than processes.

Repository

https://github.com/okeeffed/developer-notes-nextjs/content/computer-systems/a-programmers-perspective/1-A-Tour-Of-Computer-Systems/Threads

Sections


Related