mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-28 06:02:56 +08:00
34cdcc7929
major release 7.0.0 release candidate 1
10 lines
342 B
C++
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
|