为什么创建的线程数小于thread-max?
Why number of created thread is less than thread-max?
使用此代码:
void yield_sleep(void)
{
using namespace std::chrono;
static size_t thread_num;
auto start{high_resolution_clock::now()};
std::this_thread::yield();
auto end{high_resolution_clock::now()};
std::cout << thread_num++
<< "|Waiting for: "
<< duration_cast<microseconds>(end - start).count()
<< " ms."
<< std::endl;
}
int main(void)
{
std::vector<std::thread> tp(62434);
std::generate(tp.begin(), tp.end(), []() { return std::thread(yield_sleep); });
std::for_each(tp.begin(), tp.end(), [](auto& t) { t.join(); });
}
程序创建 ~32718 线程并抛出异常:
terminate called after throwing an instance of 'std::system_error'
what(): Resource temporarily unavailable
但在 /proc/sys/kernel/threads-max
中的值为 62434。问题是什么?为什么我的程序在创建线程时抛出异常?
如评论中 @1201ProgramAlarm and @Francois Andrieux 所述。 thread-max
值是系统范围的限制,为了创建更多线程,我们需要在内核设置中进行一些修改:
使用此代码:
void yield_sleep(void)
{
using namespace std::chrono;
static size_t thread_num;
auto start{high_resolution_clock::now()};
std::this_thread::yield();
auto end{high_resolution_clock::now()};
std::cout << thread_num++
<< "|Waiting for: "
<< duration_cast<microseconds>(end - start).count()
<< " ms."
<< std::endl;
}
int main(void)
{
std::vector<std::thread> tp(62434);
std::generate(tp.begin(), tp.end(), []() { return std::thread(yield_sleep); });
std::for_each(tp.begin(), tp.end(), [](auto& t) { t.join(); });
}
程序创建 ~32718 线程并抛出异常:
terminate called after throwing an instance of 'std::system_error'
what(): Resource temporarily unavailable
但在 /proc/sys/kernel/threads-max
中的值为 62434。问题是什么?为什么我的程序在创建线程时抛出异常?
如评论中 @1201ProgramAlarm and @Francois Andrieux 所述。 thread-max
值是系统范围的限制,为了创建更多线程,我们需要在内核设置中进行一些修改: