Home | History | Annotate | Download | only in doxygen

Lines Matching refs:get_pid

42 	printf("[thread %s] Start task\n", get_pid().c_str());
44 printf("[thread %s] Timer1 fired\n", get_pid().c_str());
49 ss << "[thread " << get_pid().c_str() << "] Timer2 failed\n";
52 ss << "(Error from thread: " << get_pid().c_str() << ")\n";
56 printf("[thread %s] Timer3 fired\n", get_pid().c_str());
63 [](int v){printf("[thread %s] OnNext: %d\n", get_pid().c_str(), v);},
64 [](std::exception_ptr eptr) { printf("[thread %s] OnError %s\n", get_pid().c_str(), rxu::what(eptr).c_str()); },
65 [](){printf("[thread %s] OnCompleted\n", get_pid().c_str());});
66 printf("[thread %s] Finish task\n", get_pid().c_str());
72 printf("[thread %s] Start task\n", get_pid().c_str());
74 printf("[thread %s] Timer1 fired\n", get_pid().c_str());
79 ss << "[thread " << get_pid().c_str() << "] Timer2 failed\n";
82 ss << "(Error from thread: " << get_pid().c_str() << ")\n";
86 printf("[thread %s] Timer3 fired\n", get_pid().c_str());
94 [](long v){printf("[thread %s] OnNext: %ld\n", get_pid().c_str(), v);},
95 [](std::exception_ptr eptr) { printf("[thread %s] OnError %s\n", get_pid().c_str(), rxu::what(eptr).c_str()); },
96 [](){printf("[thread %s] OnCompleted\n", get_pid().c_str());});
97 printf("[thread %s] Finish task\n", get_pid().c_str());