1

这是我创建一些线程的代码。我想同时创建 500 个线程,而不是更多。很简单,但是我的代码在创建 32xxx 个线程后失败了。

然后我不明白为什么我在 32751 个线程之后得到错误代码 11,因为每个线程都结束了。

我可以理解,如果线程不退出,那么同一台计算机上的 32751 个线程......但是在这里,每个线程都退出了。

这是我的代码:

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

void *test_tcp(void *);

int main ()
    {
    pthread_t threads[500];
    int pointeur_thread;
    unsigned long compteur_de_thread=0;
    long ttt=0;
    int i;

    for(int i=0;i<=1000000;i++)
        {
        ttt++;
        pointeur_thread=pthread_create(&threads[compteur_de_thread],NULL,test_tcp,NULL);
        if (pointeur_thread!=0)
            {
            printf("Error : %d\n",pointeur_thread);
            exit(0);
            }
        printf("pointeur_thread : %d - Thread : %ld - Compteur_de_thread : %ld\n",pointeur_thread,compteur_de_thread,ttt);

        compteur_de_thread++;
        if (compteur_de_thread>=500)
            compteur_de_thread=0;
        }
    printf("The END\n");
    }

void *test_tcp(void *thread_arg_void)
    {
    pthread_exit(NULL);
    }
4

3 回答 3

2

除了加入线程之外,另一个选择是分离每个线程。一个分离的线程在它结束的那一刻释放它的所有资源。

为此,只需调用

pthread_detach(pthread_self());

在线程函数内部。

如果这样做,请注意通过main()调用pthread_exit()(而不仅仅是returning 或ing)离开程序exit(),就好像错过了这样做,main()不仅会退出自身,还会退出整个进程,并且这会关闭所有进程的线程,可能仍在运行。

于 2016-07-21T16:42:46.143 回答
2

您可能会得到与 EAGAIN 对应的错误值,这意味着:资源不足,无法创建另一个线程。

问题是您在退出后没有加入您的线程。这可以在 if 语句中完成,您可以在其中检查是否所有 id 都已使用:if (compteur_de_thread>=500)
只需遍历数组并调用pthread_join所述数组的元素。

于 2016-07-21T16:21:24.190 回答
0

谢谢大家。

我替换“pthread_exit(NULL);” 通过“pthread_detach(pthread_self());” 现在是完美的。

我认为退出意味着:“关闭线程”并且我认为分离意味着“等待中的线程”

但没有:) 谢谢大家。

克里斯托夫

于 2016-07-22T07:49:41.263 回答