fprime/Os/Linux/DefaultCpu.cpp
Thomas Boyer-Chammard 578e61f1da
Format Os Module (#3959)
* Format Os module

* Add Os to format-check CI

* Remove double semi-colon
2025-07-31 15:40:30 -07:00

14 lines
541 B
C++

// ======================================================================
// \title Os/Linux/DefaultCpu.cpp
// \brief sets default Os::Cpu to Linux implementation via linker
// ======================================================================
#include "Os/Cpu.hpp"
#include "Os/Delegate.hpp"
#include "Os/Linux/Cpu.hpp"
namespace Os {
CpuInterface* CpuInterface::getDelegate(CpuHandleStorage& aligned_new_memory) {
return Os::Delegate::makeDelegate<CpuInterface, Os::Linux::Cpu::LinuxCpu>(aligned_new_memory);
}
} // namespace Os