InterviewSolution
Saved Bookmarks
| 1. |
What Is The Relationship Between Threads And Processes? |
|
Answer» A process can have multiple threads but a thread always belongs to a SINGLE process. Two process cannot SHARE memory space until they are purposefully doing inter process communication via shared memory but two threads from same process always share same memory. A process can have multiple threads but a thread always belongs to a single process. Two process cannot share memory space until they are purposefully doing inter process communication via shared memory but two threads from same process always share same memory. |
|