GCC Code Coverage Report


Directory: Os/
File: Generic/DefaultPriorityMemQueue.cpp
Date: 2026-09-03 21:15:10
Exec Total Coverage
Lines: 0 3 0.0%
Functions: 0 1 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // ======================================================================
2 // \title Os/Generic/DefaultPriorityMemQueue.cpp
3 // \author B. Duckett
4 // \brief cpp file sets default Os::Queue to generic priority queue implementation via linker
5 //
6 // \copyright
7 // Copyright 2026, by the California Institute of Technology.
8 // ALL RIGHTS RESERVED. United States Government Sponsorship
9 // acknowledged.
10 // ======================================================================
11 #include "Os/Delegate.hpp"
12 #include "Os/Queue.hpp"
13 #include "PriorityMemQueue.hpp"
14
15 namespace Os {
16 QueueInterface* QueueInterface::getDelegate(QueueHandleStorage& aligned_new_memory) {
17 return Os::Delegate::makeDelegate<QueueInterface, Os::Generic::PriorityMemQueue, QueueHandleStorage>(
18 aligned_new_memory);
19 }
20 } // namespace Os
21