GCC Code Coverage Report


Directory: ./
File: Linux/DefaultCpu.cpp
Date: 2026-09-03 22:13:09
Exec Total Coverage
Lines: 2 2 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ======================================================================
2 // \title Os/Linux/DefaultCpu.cpp
3 // \brief sets default Os::Cpu to Linux implementation via linker
4 // ======================================================================
5 #include "Os/Cpu.hpp"
6 #include "Os/Delegate.hpp"
7 #include "Os/Linux/Cpu.hpp"
8
9 namespace Os {
10 1 CpuInterface* CpuInterface::getDelegate(CpuHandleStorage& aligned_new_memory) {
11 1 return Os::Delegate::makeDelegate<CpuInterface, Os::Linux::Cpu::LinuxCpu>(aligned_new_memory);
12 }
13 } // namespace Os
14