| 463 | } |
| 464 | |
| 465 | static int |
| 466 | thread_callback(Dwfl_Thread* thread, void* thread_arg) |
| 467 | { |
| 468 | auto tids = static_cast<std::vector<int>*>(thread_arg); |
| 469 | tids->emplace_back(dwfl_thread_tid(thread)); |
| 470 | return DWARF_CB_OK; |
| 471 | } |
| 472 | |
| 473 | struct ThreadArg |
| 474 | { |
nothing calls this directly
no outgoing calls
no test coverage detected