GCC Code Coverage Report


Directory: Os/
File: Stub/DefaultQueue.cpp
Date: 2026-09-03 21:15:10
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/DefaultQueue.cpp
3 // \brief sets default Os::Queue to stub implementation via linker
4 // ======================================================================
5 #include "Os/Delegate.hpp"
6 #include "Os/Queue.hpp"
7 #include "Os/Stub/Queue.hpp"
8
9 namespace Os {
10 QueueInterface* QueueInterface::getDelegate(QueueHandleStorage& aligned_new_memory) {
11 return Os::Delegate::makeDelegate<QueueInterface, Os::Stub::Queue::StubQueue>(aligned_new_memory);
12 }
13 } // namespace Os
14