GCC Code Coverage Report


Directory: Os/
File: Os.cpp
Date: 2026-09-23 21:11:56
Exec Total Coverage
Lines: 0 7 0.0%
Functions: 0 1 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ======================================================================
2 // \title Os/Os.cpp
3 // \brief common definitions for the OSAL layer
4 // ======================================================================
5 #include "Os/Os.hpp"
6 #include "Fw/FPrimeBasicTypes.hpp"
7 #include "Os/Console.hpp"
8 #include "Os/Cpu.hpp"
9 #include "Os/FileSystem.hpp"
10 #include "Os/Memory.hpp"
11 #include "Os/Task.hpp"
12
13 namespace Os {
14
15 ✗ void init() {
16 // Initialize all OSAL singletons
17 ✗ Os::Console::init();
18 ✗ Os::FileSystem::init();
19 ✗ Os::Cpu::init();
20 ✗ Os::Memory::init();
21 ✗ Os::Task::init();
22 ✗ }
23
24 } // namespace Os
25