Reaves.dev

v0.1.0

built using

Phoenix v1.7.17

Multithreaded Refresher

Stephen M. Reaves

::

2024-01-15

Refresher about Multithreaded Programming for CS-6210

Summary

Process Thread Relationship

Main process has Stack, Heap, Globals, Constants, and Code sections

Threads have their own stack, but share everything else with main process

Thread Patterns