एक context switch kernel द्वारा वर्तमान में चल रहे thread की CPU state (registers, program counter, stack pointer) को save करना और किसी दूसरे thread की state को restore करना है, ताकि एक अकेला core कई threads को multiplex कर सके। यह हर scheduler preemption, blocking syscall, या interrupt पर होता है — और यह मुफ़्त नहीं है।
कीमत कहाँ छिपी है
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
