Click to See Complete Forum and Search --> : Will 1 stalled thread affects other thread in a multi-thread process?


sceadu
August 1st, 2005, 03:33 AM
Hi,
I have a process that runs 3 threads. 2 of these threads are linked by mutex while the 3rd thread is independent.

If any one of the linked thread is stalled (example, memory buffer problem), will the 3rd independent thread be affected.

Note that these 3 threads are all started by the same process.

MrViggy
August 1st, 2005, 10:54 AM
Nope, it shouldn't be affected.

Viggy