GCC Code Coverage Report


Directory: ./
File: Os/Stub/DefaultTask.cpp
Date: 2026-09-03 22:12:29
Exec Total Coverage
Lines: 0 2 0.0%
Functions: 0 1 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ======================================================================
2 // \title Os/Stub/test/DefaultTask.cpp
3 // \brief sets default Os::Task to test stub implementation via linker
4 // ======================================================================
5 #include <sys/time.h>
6 #include <cerrno>
7 #include "Os/Delegate.hpp"
8 #include "Os/Stub/Task.hpp"
9 #include "Os/Task.hpp"
10
11 namespace Os {
12 TaskInterface* TaskInterface::getDelegate(TaskHandleStorage& aligned_new_memory) {
13 return Os::Delegate::makeDelegate<TaskInterface, Os::Stub::Task::StubTask>(aligned_new_memory);
14 }
15
16 } // namespace Os
17