QXK_onContextSw() not called at the end of QXK_activate_()
Real-Time Event Frameworks based on active objects & state machines
Brought to you by:
quantum-leaps
QP/C/C++ 6.9.0 has a a typo in qxk.c:537 and qxk.cpp:532, which prevents the QXK_onContextSw() from being called at the end of the QXK_activate_():
The current code with the typo:
#if (defined QK_ON_CONTEXT_SW) || (defined Q_SPY)
Should be corrected as follows (note QXK_ instead of QK_) :
#if (defined QXK_ON_CONTEXT_SW) || (defined Q_SPY)
--MMS
Anonymous
Fixed in QP/C/C++ 6.9.1.
--MMS