mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-14 05:42:57 +08:00
8 lines
279 B
C++
8 lines
279 B
C++
namespace DPP {
|
|
|
|
// local extended-thread objects .............................................
|
|
static void Thread1_run(QP::QXThread * const me); // run routine for Thread1
|
|
|
|
static QP::QXThread l_test1(&Thread1_run, 0U); //<== QXThread::QXThread() ctor
|
|
. . .
|
|
} // namespace DPP
|