QP/C++ 6.9.3
qv.hpp
Go to the documentation of this file.
1 
39 #ifndef QV_HPP
40 #define QV_HPP
41 
42 #include "qequeue.hpp" // QV kernel uses the native QF event queue
43 #include "qmpool.hpp" // QV kernel uses the native QF memory pool
44 #include "qpset.hpp" // QV kernel uses the native QF priority set
45 
46 //****************************************************************************
47 // QF configuration for QK
48 
49 // QV event-queue used for AOs
50 #define QF_EQUEUE_TYPE QEQueue
51 
52 
53 //****************************************************************************
54 namespace QP {
55 
61 // @note The QV ready set, etc. belong conceptually to the QV class (as static
65 class QV {
66 public:
67 
78  static void onIdle(void);
79 };
80 
81 } // namespace QP
82 
83 //****************************************************************************
84 extern "C" {
85  extern QP::QPSet QV_readySet_;
86 } // extern "C"
87 
88 //****************************************************************************
89 // interface used only inside QF, but not in applications
90 
91 #ifdef QP_IMPL
92 
93  // QV-specific scheduler locking (not needed in QV)
94  #define QF_SCHED_STAT_
95  #define QF_SCHED_LOCK_(dummy) (static_cast<void>(0))
96  #define QF_SCHED_UNLOCK_() (static_cast<void>(0))
97 
98  // QV-specific native event queue operations...
99  #define QACTIVE_EQUEUE_WAIT_(me_) \
100  Q_ASSERT_ID(110, (me_)->m_eQueue.m_frontEvt != nullptr)
101  #define QACTIVE_EQUEUE_SIGNAL_(me_) \
102  (QV_readySet_.insert(static_cast<std::uint_fast8_t>((me_)->m_prio)))
103 
104  // QV-specific native QF event pool operations...
105  #define QF_EPOOL_TYPE_ QMPool
106  #define QF_EPOOL_INIT_(p_, poolSto_, poolSize_, evtSize_) \
107  (p_).init((poolSto_), (poolSize_), (evtSize_))
108  #define QF_EPOOL_EVENT_SIZE_(p_) ((p_).getBlockSize())
109  #define QF_EPOOL_GET_(p_, e_, m_, qs_id_) \
110  ((e_) = static_cast<QEvt *>((p_).get((m_), (qs_id_))))
111  #define QF_EPOOL_PUT_(p_, e_, qs_id_) ((p_).put((e_), (qs_id_)))
112 
113 #endif // QP_IMPL
114 
115 #endif // QV_HPP
116 
QV services.
Definition: qv.hpp:65
static void onIdle(void)
QV idle callback (customized in BSPs for QK)
namespace associated with the QP/C++ framework
Definition: struct.dox:1
platform-independent fast "raw" thread-safe event queue interface
platform-independent memory pool QP::QMPool interface.
platform-independent priority sets of 8 or 64 elements.
QP::QPSet QV_readySet_
ready set of AOs
Priority Set of up to 32 elements *‍/.
Definition: qpset.hpp:76