以下のコードを使用して、pthread_create 関数が作成できるスレッドの最大数をテストします。
#include <pthread.h>
#include <stdio.h>
static unsigned long long thread_nr = 0;
pthread_mutex_t mutex_;
void* inc_thread_nr(void* arg) {
(void*)arg;
pthread_mutex_lock(&mutex_);
thread_nr ++;
pthread_mutex_unlock(&mutex_);
/* printf("thread_nr = %d\n", thread_nr); */
sleep(300000);
}
int main(int argc, char *argv[])
{
int err;
int cnt = 0;
pthread_t pid[1000000];
pthread_mutex_init(&mutex_, NULL);
while (cnt < 1000000) {
err = pthread_create(&pid[cnt], NULL, (void*)inc_thread_nr, NULL);
if (err != 0) {
break;
}
cnt++;
}
pthread_join(pid[cnt], NULL);
pthread_mutex_destroy(&mutex_);
printf("Maximum number of threads per process is = %d\n", thread_nr);
}
出力は次のとおりです。
Maximum number of threads per process is = 825
それは pthread_create 関数が作成できるスレッドの最大数ですか?
さらに、以下のコマンドを使用して、システムが許可するスレッドの最大数を表示します。
# cat /proc/sys/kernel/threads-max
そして番号は772432です。
プログラムの出力が の値と等しくないのはなぜthreads-max
ですか?
私のOSはFodaro 16で、12コア、48G RAMです。