GCC Code Coverage Report


Directory: ./
File: Os/Os.cpp
Date: 2026-09-03 21:13:48
Exec Total Coverage
Lines: 7 7 100.0%
Functions: 1 1 100.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 3 void init() {
16 // Initialize all OSAL singletons
17 3 Os::Console::init();
18 3 Os::FileSystem::init();
19 3 Os::Cpu::init();
20 3 Os::Memory::init();
21 3 Os::Task::init();
22 3 }
23
24 } // namespace Os
25