Skip to content

Instantly share code, notes, and snippets.

@pkutaj
Created May 26, 2026 07:21
Show Gist options
  • Select an option

  • Save pkutaj/1ddc1d177c523acb2d3eaf129684f0b2 to your computer and use it in GitHub Desktop.

Select an option

Save pkutaj/1ddc1d177c523acb2d3eaf129684f0b2 to your computer and use it in GitHub Desktop.
Explaining The Heap snippet
high address ┌────────────┐
│ stack │ ← grows downward, per-thread
│ ↓ │
│ (gap) │
│ ↑ │
│ heap │ ← grows upward, shared across threads
│────────────│
│ BSS │ uninitialised globals
│ data │ initialised globals
│ text │ code
low address └────────────┘
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment