QP/C++ 6.9.3
qk/qf_port.hpp
Go to the documentation of this file.
1 
39 #ifndef QF_PORT_HPP
40 #define QF_PORT_HPP
41 
42 // interrupt disabling mechanism
43 #define QF_INT_DISABLE() intDisable()
44 #define QF_INT_ENABLE() intEnable()
45 
46 // QF critical section mechansim
47 #define QF_CRIT_STAT_TYPE unsigned
48 #define QF_CRIT_ENTRY(stat_) ((stat_) = critEntry())
49 #define QF_CRIT_EXIT(stat_) critExit(stat_)
50 
51 #include "qep_port.hpp" // QEP port
52 #include "qk_port.hpp" // QK port
53 #include "qf.hpp" // QF platform-independent public interface
54 
55 extern "C" {
56 
57 void intDisable(void);
58 void intEnable(void);
59 
62 
63 } // extern "C"
64 
65 #endif // QF_PORT_HPP
QEP/C++ port, generic C++11 compiler.
QF/C++ platform-independent public interface.
#define QF_CRIT_STAT_TYPE
Definition: qk/qf_port.hpp:47
void intDisable(void)
void intEnable(void)
QF_CRIT_STAT_TYPE critEntry(void)
void critExit(QF_CRIT_STAT_TYPE stat)
QK/C++ port to Lint, Generic C++ compiler.