What's the difference between a process and a thread?
Utilisateur anonyme
Processes: Independent execution units that contains theirs own stack information, use their own address spaces and only interact with each other via OS Threads: A single process might contains multiple threads. All threads in a process share the memory space and communicate directly.