This commit is contained in:
QL 2019-03-13 09:20:03 -04:00
parent f70f791b37
commit 3236bfbba5
2 changed files with 3 additions and 8 deletions

2
.gitignore vendored
View File

@ -36,6 +36,7 @@ lint*.txt
*.qlc
JLink*.*
./version-*
eclipse/
test_priv/
dbg/
@ -54,7 +55,6 @@ lib/
obj/
output/
doxygen/html/
lint/*.txt
lint/MISRA_Exemplar_Suite_test/*.txt

View File

@ -2,9 +2,9 @@
/// @brief QP/C++ port to Qt
/// @cond
///***************************************************************************
/// Last Updated for Version: QP 5.8.0/Qt 5.x
/// Last Updated for Version: QP 6.4.0/Qt 5.x
/// Last updated for version 6.4.0
/// Last updated on 2019-02-10
/// Last updated on 2019-03-12
///
/// Q u a n t u m L e a P s
/// ------------------------
@ -157,10 +157,5 @@ void QActive::start(uint_fast8_t const prio,
thread->setStackSize(stkSize);
thread->start();
}
//............................................................................
void QActive::stop(void) {
Q_REQUIRE(m_thread != 0);
static_cast<AOThread *>(m_thread)->m_isRunning = false;
}
} // namespace QP