context switch એ kernel દ્વારા હાલમાં ચાલતા thread ની CPU state (registers, program counter, stack pointer) સાચવવી અને બીજા thread ની પુનઃસ્થાપિત કરવી છે, જેથી એક જ 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
