gpt4 book ai didi

c++ - 如何从 C++ 代码获取 linux 上的线程 pid?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:38:28 24 4
gpt4 key购买 nike

所以在 htop 中,我看到一个非常糟糕的线程消耗了其中一个核心的 70%。

enter image description here

我想将我的应用程序逻辑映射到执行它的线程 pid

Network read pid 22882
Network write pid 22874

所以我想知道如何从中获取执行线程的 pid?

要创建一个线程,我使用 boost::thread

最佳答案

使用getpid() 获取pid。使用 gettid() 获取 tid(线程 ID)。

getpid() returns the process ID of the calling process

gettid() returns the caller's thread ID (TID). In a single-threaded process, the thread ID is equal to the process ID (PID, as returned by getpid(2)). In a multithreaded process, all threads have the same PID, but each one has a unique TID.

关于c++ - 如何从 C++ 代码获取 linux 上的线程 pid?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21303970/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com