1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-07-01 17:43:02 +00:00

Apply clang-format to source files

This commit is contained in:
Marc Majoral 2025-06-13 14:32:52 +02:00 committed by Carles Fernandez
parent a559536f61
commit 876058cb3c
3 changed files with 3 additions and 4 deletions

View File

@ -362,7 +362,7 @@ void Adrv9361z7035SignalSourceFPGA::run_buffer_monitor_process()
// If a buffer overflow is detected, the receiver may not function correctly.
// This compromises system reliability and can lead to undefined behavior.
// To prevent further issues, execution is halted.
LOG(ERROR) << "Buffer Overflow Detected Execution Halted";
LOG(ERROR) << "Buffer Overflow Detected Execution Halted";
exit(1);
}
std::this_thread::sleep_for(std::chrono::milliseconds(buffer_monitor_period_ms));

View File

@ -307,7 +307,7 @@ void Fmcomms5SignalSourceFPGA::run_buffer_monitor_process()
// If a buffer overflow is detected, the receiver may not function correctly.
// This compromises system reliability and can lead to undefined behavior.
// To prevent further issues, execution is halted.
LOG(ERROR) << "Buffer Overflow Detected Execution Halted";
LOG(ERROR) << "Buffer Overflow Detected Execution Halted";
exit(1);
}
std::this_thread::sleep_for(std::chrono::milliseconds(buffer_monitor_period_ms));

View File

@ -427,7 +427,7 @@ void MAX2771EVKITSignalSourceFPGA::run_buffer_monitor_process()
// If a buffer overflow is detected, the receiver may not function correctly.
// This compromises system reliability and can lead to undefined behavior.
// To prevent further issues, execution is halted.
LOG(ERROR) << "Buffer Overflow Detected Execution Halted";
LOG(ERROR) << "Buffer Overflow Detected Execution Halted";
exit(1);
}
std::this_thread::sleep_for(std::chrono::milliseconds(buffer_monitor_period_ms));
@ -437,7 +437,6 @@ void MAX2771EVKITSignalSourceFPGA::run_buffer_monitor_process()
enable_ovf_check_buffer_monitor_active = false;
}
}
}