gpt4 book ai didi

c - 父级在 pthread_create 之后获取其子级 id 的有效方法?

转载 作者:行者123 更新时间:2023-11-30 15:08:55 25 4
gpt4 key购买 nike

考虑下一段代码 -

pthread_t* threads;

void createWorkers(WorkerType type)
{
// Create mapper threads and their Container
for (int i = 0; i < poolSize; ++i)
{
// Add new Thread
ret = pthread_create(&threads[i], nullptr, function, nullptr);

// HERE THE MAIN THREAD PRINTS THE JUST CREATED THREAD ID (*)
}
}

int main()
{
createWorkers();

// JOINING THE THREADS

return 0;
}

有没有办法让父线程(主线程)获取它的子线程 id?例如,在 (*) 行中创建子级之后?

最佳答案

根据手册页,线程 ID 与 pthread_create 返回的 pthread_t 相同。所以你可以打印它:

printf("%d", threads[i]);

关于c - 父级在 pthread_create 之后获取其子级 id 的有效方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37033487/

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