pthread_create()的返回码是11

时间:2011-08-12 10:06:42

标签: c multithreading gcc

我正在尝试运行一个简单的多线程编程,我从gcc

收到此错误
  

pthread_create()的返回码是11

我该如何解决这个问题?

#include <pthread.h>                            
#include <stdio.h>                          
#include <stdlib.h>                         

#define NUM_THREADS     20000                           

void *PrintHello(void *threadid)                            
{                           
   long tid;                            
   tid = (long)threadid;                            
   printf("Hello World! It's me, thread #%ld!\n", tid);                         
   pthread_exit(NULL);                          
}                           

int main (int argc, char *argv[])                           
{                           
   pthread_t threads[NUM_THREADS];                          
   int rc;                          
   long t;                          
   for(t=0; t<NUM_THREADS; t++){                            
      printf("In main: creating thread %ld\n", t);                          
      rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);                            
      if (rc){                          
         printf("ERROR; return code from pthread_create() is %d\n", rc);                            
         exit(-1);                          
      }                         
   }                            

   /* Last thing that main() should do */                           
   pthread_exit(NULL);                          
}                           

1 个答案:

答案 0 :(得分:16)

嗯,你可以从确定错误的实际含义开始。根据{{​​3}}和this(其他资源会告诉您相同的信息,这只是一个示例),数字11代表EAGAIN,这反过来意味着“系统缺乏必要的创建另一个线程的资源,或系统对进程PTHREAD_THREADS_MAX中线程总数的限制。“。

这符合您尝试创建20.000(!)个线程的事实。创建更少的线程,或等到线程完成后再开始新的线程。

请注意,可以创建的最大线程数取决于您的系统(甚至可能取决于许多其他设置)。谷歌如果你真的需要知道“如何找到PTHREAD_THREADS_MAX”。

然而,除非这只是一个微不足道的例子(或者甚至可能是那个),你可能想要研究this的概念。