达到计数32751后无法创建线程

问题描述 投票:-1回答:1
#include <stdio.h>
#include <pthread.h>
#include <errno.h>

void *my_thread(void *ddd)
{
    printf("Thread created\n");
    pthread_exit(NULL);
}

int main()
{
    int ret = 0, counter = 0;
    pthread_t et;
    while(1)
    {
        ret = pthread_create(&et, NULL, my_thread, (void *)&counter);
        if(ret)
        {
            printf("Ret = %d, errr = %d, couter = %d\n", ret, errno, counter);
            break;
        }
        counter++;
    }
    return 0;
}

以上是我的C代码。检查ulimit -s它给8192.I我没有使用pthred_join因为我想并行处理我的数据以及任何线程将在完成其工作后退出。创建32750 thred后程序的输出是

Thread created 32750
Thread created 32751
Ret = 11, errr = 12, couter = 32751
c linux pthreads centos7
1个回答
1
投票

来自pthread_create man page

线程可以是可连接的也可以是分离的。 ...

仅当已连接已终止的可连接线程时,其最后一个资源才会释放回系统。 ...

当分离的线程终止时,其资源会自动释放回系统:....

默认情况下,在可连接状态下创建新线程,除非将attr设置为以分离状态创建线程(使用thread_attr_setdetachstate(3))。

这意味着对于您创建但未加入的任何线程,某些资源在终止后仍会保留。在一定数量的线程之后,您将耗尽资源。

为了避免这种情况,cou可以在创建线程后调用pthread_detach或使用pthread_attr_setdetachstate在创建它之前。

© www.soinside.com 2019 - 2024. All rights reserved.