| 572 | } |
| 573 | |
| 574 | void |
| 575 | ProcessInfo::clearPthreadJoinState(pthread_t thread) |
| 576 | { |
| 577 | _do_lock_tbl(); |
| 578 | if (_pthreadJoinId.find(thread) != _pthreadJoinId.end()) { |
| 579 | _pthreadJoinId.erase(thread); |
| 580 | } |
| 581 | _do_unlock_tbl(); |
| 582 | } |
| 583 | |
| 584 | void |
| 585 | ProcessInfo::endPthreadJoin(pthread_t thread) |
no test coverage detected