qpcpp/doxygen/snippets/qf_xctor.cpp
MMS 34cdcc7929 7.0.0rc1
major release 7.0.0 release candidate 1
2022-04-19 19:23:30 -04:00

10 lines
342 B
C++

namespace DPP {
// local extended-thread objects .............................................
static void Thread1_run(QP::QXThread * const me); // run routine for Thread1
static QP::QXThread l_thread1(&Thread1_run, 0U); // Thread1 instance
QP::QXThread * const XT_Thread1 = &l_thread1; // global pointer to the thread
} // namespace DPP