Un context switch este momentul în care kernel-ul salvează starea CPU a thread-ului aflat în execuție (regiștri, program counter, stack pointer) și o restaurează pe a altui thread, astfel încât un singur core să poată multiplexa multe thread-uri. Se întâmplă la fiecare preempțiune a scheduler-ului, syscall blocant sau întrerupere — și nu e gratuit.
Unde se ascunde costul
DIRECT cost (visible, ~1–5 µs):
save/restore registers · run scheduler logic · switch kernel stacks
if PROCESS switch: also swap page tables (CR3) → FLUSHES the TLB
INDIRECT cost (often much larger):
cold CPU CACHES → the new thread's data isn't in L1/L2/L3 → cache misses to RAM
cold TLB → address translations must be re-walked
lost pipeline / branch-predictor state
