我可以通过/proc/self/task
枚举here中描述的当前进程所有线程的tid。如果我使用的库创建了一些线程,如何将这些线程ID映射到std::thread::id
-s?
例如this program:
#include <iostream>
#include <thread>
#include <vector>
#include <errno.h>
#include <sched.h>
#include <sys/types.h>
#include <dirent.h>
int main()
{
auto get_thread_ids = [] () -> std::vector<int>
{
std::unique_ptr<DIR, int (*)(DIR*)> self_dir{opendir("/proc/self/task"), &closedir};
if (!self_dir)
return {};
std::vector<int> ret{};
struct dirent *entry = nullptr;
while ((entry = readdir(self_dir.get())) != nullptr)
{
if (entry->d_name[0] == '.')
continue;
ret.emplace_back(std::stoi(entry->d_name));
}
return ret;
};
std::cout << "main " << std::this_thread::get_id() << std::endl;
std::thread t{
[](){
std::cout << "thread " << std::this_thread::get_id() << std::endl;
std::this_thread::sleep_for(std::chrono::seconds{5});
}
};
for (const auto& i : get_thread_ids())
std::cout << "tid: " << i << std::endl;
t.join();
}
打印此:
main 140125847566144
tid: 31383
tid: 31384
thread 140125829990144
我希望能够建立对应关系:31383->140125847566144
,31384->140125829990144
。
答案 0 :(得分:0)
您需要自己访问std::thread
对象,并使用native_handle
。
或者您需要能够控制在那些线程上执行的操作,在这种情况下,您可以调用std::this_thread::get_id
作为标准ID,pthread_self
作为本机ID。