QP/C++ 6.9.3
qxk/qf_port.hpp
Go to the documentation of this file.
1 
39 #ifndef QF_PORT_HPP
40 #define QF_PORT_HPP
41 
42 //lint -save -e1960 MISRA-C++:2008 Rule 7-3-1, Global declaration
43 
57 #define QF_MAX_ACTIVE 32U
58 
74 #define QF_MAX_EPOOL 3U
75 
93 #define QF_EVENT_SIZ_SIZE 2U
94 
113 #define QF_EQUEUE_CTR_SIZE 1U
114 
135 #define QF_MPOOL_SIZ_SIZE 2U
136 
154 #define QF_MPOOL_CTR_SIZE 2U
155 
172 #define QF_TIMEEVT_CTR_SIZE 2U
173 
182 #define QF_INT_DISABLE() intDisable()
183 
192 #define QF_INT_ENABLE() intEnable()
193 
200 #define QF_CRIT_STAT_TYPE unsigned
201 
214 #define QF_CRIT_ENTRY(stat_) ((stat_) = critEntry())
215 
229 #define QF_CRIT_EXIT(stat_) critExit(stat_)
230 
238 #define QF_ACTIVE_STOP
239 
240 //lint -restore
241 
242 #include "qep_port.hpp" // QEP port
243 #include "qxk_port.hpp" // QXK port
244 #include "qf.hpp" // QF platform-independent public interface
245 #include "qxthread.hpp" // QXK naked thread
246 
247 extern "C" {
248 
249 void intDisable(void);
250 void intEnable(void);
251 
254 
255 } // extern "C"
256 
257 #endif // QF_PORT_HPP
QEP/C++ port, generic C++11 compiler.
QF/C++ platform-independent public interface.
#define QF_CRIT_STAT_TYPE
Define the type of the critical section status.
void intDisable(void)
void intEnable(void)
QF_CRIT_STAT_TYPE critEntry(void)
void critExit(QF_CRIT_STAT_TYPE stat)
QXK/C++ port example, Generic C++ compiler.
QXK/C++ extended (blocking) thread.