pthread_create没有足够的空间

时间:2013-05-17 09:39:15

标签: c pthreads mingw pthreads-win32

我在Windows上使用Pthreads和MinGW。对pthread_create的调用返回一个错误,该错误转换为“空间不足”。它指的是什么样的空间?是线程堆栈空间吗?

int scannerThreadReturnValue = pthread_create(&parserThreadHandle, &attr, parserThread, (void *)filename);
    if(scannerThreadReturnValue != 0) {
        printf("Unable to create thread %s\n", strerror(errno));
    }
    else printf("Parser thread creation successfull\n");

2 个答案:

答案 0 :(得分:1)

错误消息最可能是错误的,因为pthread_*系列函数未设置errno。错误代码由函数返回。

所以修改你这样的代码:

int scannerThreadReturnValue = pthread_create(&parserThreadHandle, &attr, parserThread, (void*)filename);
if (scannerThreadReturnValue != 0)
{
  printf("Unable to create thread: %s\n", strerror(scannerThreadReturnValue));
}
else 
{
  printf("Parser thread creation successful.\n");
}

这将为您提供正确的错误消息。

答案 1 :(得分:0)

这很奇怪,虽然我不确定MinGW,是的,它应该指的是堆栈大小。这是什么类型的应用程序?你在这个parserThread之前创建了很多线程吗? 。理想情况下不应该在太空问题上失败。

可能你可以启动线程属性,并尝试在创建线程之前设置stacksize。所以我们可以轻松缩小范围。