通过pidin观察线程信息
pidin在qnx里是一个非常有用的命令,该命令提供了多个选项来获取关于进程的详细信息,包括进程ID(PID)、进程状态、CPU使用情况、内存使用情况、线程信息等。
pidin通过threads参数可以观察进程ID,线程ID,线程名字,线程状态等。
Show the process ID, thread ID (in QNX Neutrino 7.0 or later), short process name, thread name, thread state, and what the thread is blocked on. If a thread doesn’t have a name, pidin displays the thread ID (tid) again.
线程信息总览
把以下代码编译成可执行文件test。
#include <thread>int main(int argc, char* argv[]) {std::thread t = std::thread([]{while (true) {std::this_thread::sleep_for(std::chrono::seconds(1));}});t.join();
}
把test运行起来后,执行pidin -p test threads
# pidin -p test threads pid tid name thread name STATE Blocked 1232925 1 ./test 1 JOIN 2 1232925 2 ./test 2 NANOSLEEP
从中看可以看到进程ID是1232925,进程名字是test,一共两个线程,名字分别为1,2。其中线程2处于sleep状态,线程1处于被线程2阻塞的join状态。
给线程起名字
我们可以通过pthread_setname_np
给线程设置名字,以方便区分不同的线程。
#include <thread>int main(int argc, char* argv[]) {pthread_setname_np(pthread_self(), "main");std::thread t = std::thread([]{while (true) {std::this_thread::sleep_for(std::chrono::seconds(1));}});pthread_setname_np(t.native_handle(), "test");t.join();
}
重新编译并运行,在另一个终端执行pidin -p test threads
# pidin -p test threads pid tid name thread name STATE Blocked 1286173 1 ./test main JOIN 2 1286173 2 ./test test NANOSLEEP
可以看到线程名字已经变成了我们设置的名字。
设置线程优先级
我们可以通过pthread_setschedprio
设置线程优先级。
#include <thread>int main(int argc, char* argv[]) {pthread_setname_np(pthread_self(), "main");pthread_setschedprio(pthread_self(), 10);std::thread t = std::thread([]{while (true) {std::this_thread::sleep_for(std::chrono::seconds(1));}});pthread_setname_np(t.native_handle(), "test");pthread_setschedprio(t.native_handle(), 50);t.join();
}
重新编译并运行,在另一个终端执行pidin -p test -F "%a %b %N %h %J %B %p"
# pidin -p test -F "%a %b %N %h %J %B %p"pid tid name thread name STATE Blocked prio1351699 1 ./test main JOIN 2 10r1351699 2 ./test test NANOSLEEP 50r
可以看到prio列显示的是我们设置的优先级。
参考文档
pidin的功能远不止此,更详细的信息请参考qnx官方文档。
pidin
Processes and Threads