以下代码应该产生 100,000 个线程:
/* compile with: gcc -lpthread -o thread-limit thread-limit.c */
/* originally from: http://www.volano.com/linuxnotes.html */
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <pthread.h>
#include <string.h>
#define MAX_THREADS 100000
int i;
void run(void) {
sleep(60 * 60);
}
int main(int argc, char *argv[]) {
int rc = 0;
pthread_t thread[MAX_THREADS];
printf("Creating threads ...\n");
for (i = 0; i < MAX_THREADS && rc == 0; i++) {
rc = pthread_create(&(thread[i]), NULL, (void *) &run, NULL);
if (rc == 0) {
pthread_detach(thread[i]);
if ((i + 1) % 100 == 0)
printf("%i threads so far ...\n", i + 1);
}
else
{
printf("Failed with return code %i creating thread %i (%s).\n",
rc, i + 1, strerror(rc));
// can we allocate memory?
char *block = NULL;
block = malloc(65545);
if(block == NULL)
printf("Malloc failed too :( \n");
else
printf("Malloc worked, hmmm\n");
}
}
sleep(60*60); // ctrl+c to exit; makes it easier to see mem use
exit(0);
}
这是在具有 32GB RAM 的 64 位机器上运行的;已安装 Debian 5.0,所有库存。
- ulimit -s 512 减小堆栈大小
- /proc/sys/kernel/pid_max 设置为 1,000,000(默认情况下,它的上限为 32k pid)。
- ulimit -u 1000000 增加最大进程数(根本不认为这很重要)
- /proc/sys/kernel/threads-max 设置为 1,000,000(默认情况下,根本没有设置)
运行它会输出以下内容:
65500 threads so far ...
Failed with return code 12 creating thread 65529 (Cannot allocate memory).
Malloc worked, hmmm
我当然不会用完 ram。我什至可以同时启动更多这些程序,它们都启动了它们的 65k 线程。
(请不要建议我不要尝试启动 100,000+ 线程。这是对应该工作的东西的简单测试。我当前基于 epoll 的服务器始终有大约 200k+ 连接,各种论文表明线程可能是更好的选择。 - 谢谢 :) )