| 582 | } |
| 583 | |
| 584 | void |
| 585 | ProcessInfo::endPthreadJoin(pthread_t thread) |
| 586 | { |
| 587 | _do_lock_tbl(); |
| 588 | if (_pthreadJoinId.find(thread) != _pthreadJoinId.end() && |
| 589 | pthread_equal(_pthreadJoinId[thread], pthread_self())) { |
| 590 | _pthreadJoinId.erase(thread); |
| 591 | } |
| 592 | _do_unlock_tbl(); |
| 593 | } |
| 594 | |
| 595 | void |
| 596 | ProcessInfo::setCkptFilename(const char *filename) |
no test coverage detected