Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2050044 | 1.4.1 | Hui Huang | P4 | Closed | Fixed | hopper |
Same problem as 4461173, but this time it happens on pthread_cond_wait()
and pthread_cond_timedwait(). pthread_cond_wait() and pthread_cond_timedwait()
need to reenter the mutex once the condition variable is signaled
(or timed out). If it's signal suspended when it's waiting for the mutex,
OS may still grant the mutex to the suspended thread and cause hangs.
This happens on SR_lock during PepTest stress tests.
and pthread_cond_timedwait(). pthread_cond_wait() and pthread_cond_timedwait()
need to reenter the mutex once the condition variable is signaled
(or timed out). If it's signal suspended when it's waiting for the mutex,
OS may still grant the mutex to the suspended thread and cause hangs.
This happens on SR_lock during PepTest stress tests.
- backported by
-
JDK-2050044 Linux: intermittent hang due to mutex being granted to suspended thread (2)
-
- Closed
-
- relates to
-
JDK-4461173 Linux:intermittent hang due to mutex being granted to suspended thread
-
- Closed
-