GCC Code Coverage Report


Directory: ./
File: Os/Generic/DefaultPriorityQueue.cpp
Date: 2026-09-03 21:13:48
Exec Total Coverage
Lines: 3 3 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ======================================================================
2 // \title Os/Posix/DefaultFile.cpp
3 // \brief sets default Os::Queue to generic priority queue implementation via linker
4 // ======================================================================
5 #include "Os/Delegate.hpp"
6 #include "Os/Generic/PriorityQueue.hpp"
7 #include "Os/Queue.hpp"
8
9 namespace Os {
10 1463 QueueInterface* QueueInterface::getDelegate(QueueHandleStorage& aligned_new_memory) {
11 1463 return Os::Delegate::makeDelegate<QueueInterface, Os::Generic::PriorityQueue, QueueHandleStorage>(
12 1463 aligned_new_memory);
13 }
14 } // namespace Os
15