|
QP/C++
|
00001 00002 // Product: QF/C++ 00003 // Last Updated for Version: 4.5.00 00004 // Date of the Last Update: May 19, 2012 00005 // 00006 // Q u a n t u m L e a P s 00007 // --------------------------- 00008 // innovating embedded systems 00009 // 00010 // Copyright (C) 2002-2012 Quantum Leaps, LLC. All rights reserved. 00011 // 00012 // This program is open source software: you can redistribute it and/or 00013 // modify it under the terms of the GNU General Public License as published 00014 // by the Free Software Foundation, either version 2 of the License, or 00015 // (at your option) any later version. 00016 // 00017 // Alternatively, this program may be distributed and modified under the 00018 // terms of Quantum Leaps commercial licenses, which expressly supersede 00019 // the GNU General Public License and are specifically designed for 00020 // licensees interested in retaining the proprietary status of their code. 00021 // 00022 // This program is distributed in the hope that it will be useful, 00023 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00024 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00025 // GNU General Public License for more details. 00026 // 00027 // You should have received a copy of the GNU General Public License 00028 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00029 // 00030 // Contact information: 00031 // Quantum Leaps Web sites: http://www.quantum-leaps.com 00032 // http://www.state-machine.com 00033 // e-mail: info@quantum-leaps.com 00035 #include "qf_pkg.h" 00036 #include "qassert.h" 00037 00041 00042 QP_BEGIN_ 00043 00044 Q_DEFINE_THIS_MODULE("qa_usuba") 00045 00046 //............................................................................ 00047 void QActive::unsubscribeAll(void) const { 00048 uint8_t const p = m_prio; 00049 Q_REQUIRE((u8_0 < p) && (p <= static_cast<uint8_t>(QF_MAX_ACTIVE)) 00050 && (QF::active_[p] == this)); 00051 00052 uint8_t const i = Q_ROM_BYTE(QF_div8Lkup[p]); 00053 00054 enum_t sig; 00055 for (sig = Q_USER_SIG; sig < QF_maxSignal_; ++sig) { 00056 QF_CRIT_STAT_ 00057 QF_CRIT_ENTRY_(); 00058 if ((QF_PTR_AT_(QF_subscrList_, sig).m_bits[i] 00059 & Q_ROM_BYTE(QF_pwr2Lkup[p])) != u8_0) 00060 { 00061 00062 QS_BEGIN_NOCRIT_(QS_QF_ACTIVE_UNSUBSCRIBE, QS::aoObj_, this) 00063 QS_TIME_(); // timestamp 00064 QS_SIG_(sig); // the signal of this event 00065 QS_OBJ_(this); // this active object 00066 QS_END_NOCRIT_() 00067 // clear the priority bit 00068 QF_PTR_AT_(QF_subscrList_, sig).m_bits[i] &= 00069 Q_ROM_BYTE(QF_invPwr2Lkup[p]); 00070 } 00071 QF_CRIT_EXIT_(); 00072 } 00073 } 00074 00075 QP_END_ 00076
1.7.6.1