apring thread added to thread ids

This commit is contained in:
2022-02-01 15:28:32 +01:00
parent bf83c9b3e2
commit 2a63548f40
7 changed files with 35 additions and 14 deletions

View File

@ -325,6 +325,9 @@ std::array<pid_t, NUM_RX_THREAD_IDS> Implementation::getThreadIds() const {
retval[id++] = 0;
}
}
if (threadArping->IsRunning()) {
retval[NUM_RX_THREAD_IDS - 1] = threadArping->GetThreadId();
}
return retval;
}