Use relaxed for retrieving sync status.

ms-pipeline-optim-2
Mooneer Salem 2025-08-09 00:43:31 -07:00
parent f0f92726b1
commit 364bc62e8c
1 changed files with 1 additions and 1 deletions

View File

@ -457,7 +457,7 @@ void FreeDVInterface::setSync(int val)
int FreeDVInterface::getSync() const
{
return sync_.load(std::memory_order_acquire);
return sync_.load(std::memory_order_relaxed);
}
void FreeDVInterface::setEq(int val)