gpt4 book ai didi

c++ - 为 pthreads 增加 solaris 上子线程的堆栈大小

转载 作者:行者123 更新时间:2023-11-28 07:01:40 26 4
gpt4 key购买 nike

我正在尝试使用以下代码片段增加 pthreads 的堆栈大小:

 size_t newstacksz = 0xf000;
void * arg = 0;
int ret = pthread_attr_setstacksize(&attr, newstacksz);
if (ret == -1) {
std::cout << "Attempt to increase thread stack size failed, resorting to default" << endl;
ret = pthread_attr_setstacksize(&attr, 0); // minimum allowable
}
pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_JOINABLE);
pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM); // system-wide contention
ret = pthread_create(&tid,&attr,thrfn,arg);
pthread_attr_destroy(&attr);

如果我创建多个工作线程,我能否得到每个线程的最大允许堆栈大小的估计值?

最佳答案

pthreads 没有最大堆栈大小的概念。所以没有办法要求 pthread 给一个线程“最大允许”的堆栈大小。也没有办法向 pthread 询问已知线程集的建议最大允许堆栈大小。

适合您的特定应用程序的(最大?)堆栈大小取决于很多很多因素:机器、操作系统、可用内存、预期负载、预期堆栈消耗等,所以它真的不是不知道 pthreads 不能告诉你。我也不行

您必须自己弄清楚合适的堆栈大小是多少。

关于c++ - 为 pthreads 增加 solaris 上子线程的堆栈大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22373043/

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