| 540 | } |
| 541 | |
| 542 | std::vector<int> |
| 543 | CoreFileUnwinder::getCoreTids() const |
| 544 | { |
| 545 | std::vector<int> tids; |
| 546 | if (dwfl_getthreads(Dwfl(), thread_callback, &tids)) { |
| 547 | throw UnwinderError("Failed to get program headers"); |
| 548 | } |
| 549 | return tids; |
| 550 | } |
| 551 | |
| 552 | struct Dwfl* |
| 553 | CoreFileUnwinder::Dwfl() const |
no test coverage detected