190
edits
Changes
m
→???
==Thread==
Multiple Threads
A process can have multiple threads.
difference
Multiple Processes doesn't share memory, while multiple Threads share memory. They can access the same data easily.
Thread enable the parallel programming but the parallel condition can have risks.
*Race Conditions - The results go wrong way by the order of thread work.
*Dead Lock - All thread wait for the other thread forever.
= User Interface =