Merge "Add std::this_thread::yield to Burst NN polling loop"

This commit is contained in:
Michael Butler 2021-03-31 18:40:54 +00:00 committed by Gerrit Code Review
commit 6aab5a161e

View file

@ -520,6 +520,8 @@ nn::Result<std::vector<FmqRequestDatum>> RequestChannelReceiver::getPacketBlocki
}
return packet;
}
std::this_thread::yield();
}
// If we get to this point, we either stopped polling because it was taking too long or polling
@ -665,6 +667,8 @@ nn::Result<std::vector<FmqResultDatum>> ResultChannelReceiver::getPacketBlocking
}
return packet;
}
std::this_thread::yield();
}
// If we get to this point, we either stopped polling because it was taking too long or polling