SRE Interview Questions

Unix Processes What is the difference between a process and a thread? A thread is a lightweight process. Each process has a separate stack, text, data and heap. Threads have their own stack, but share text, data and heap with the process. Text is the actual program itself, data is the input to the program … Continue reading SRE Interview Questions