mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-02-04 06:13:00 +08:00
8 lines
277 B
C++
8 lines
277 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
|