May 31, 2020 at 5:54pm
Your app ran out of memory.
Without seeing the code it's difficult to tell.
May 31, 2020 at 10:17pm
Based on the posted code there's no way to tell if this is a constructed thread object
|
threads.push_back(sim->spawn())
|
You can also try using
1 2 3 4
|
for(auto & t: threads){
if(t.joinable())
t.join();
}
|
Edit also try using emplace_back()
Last edited on May 31, 2020 at 10:18pm
May 31, 2020 at 10:57pm
getFriendlyPose() is being called in an infinite loop. Is it allocating but not deallocating memory (directly or indirectly)?