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 *.qlc
JLink*.* JLink*.*
./version-*
eclipse/ eclipse/
test_priv/ test_priv/
dbg/ dbg/
@ -54,7 +55,6 @@ lib/
obj/ obj/
output/ output/
doxygen/html/ doxygen/html/
lint/*.txt lint/*.txt
lint/MISRA_Exemplar_Suite_test/*.txt lint/MISRA_Exemplar_Suite_test/*.txt

View File

@ -2,9 +2,9 @@
/// @brief QP/C++ port to Qt /// @brief QP/C++ port to Qt
/// @cond /// @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 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 /// 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->setStackSize(stkSize);
thread->start(); thread->start();
} }
//............................................................................
void QActive::stop(void) {
Q_REQUIRE(m_thread != 0);
static_cast<AOThread *>(m_thread)->m_isRunning = false;
}
} // namespace QP } // namespace QP