创建 pthread 时出现 C++ 分段错误

C++ segmentation fault when creating pthreads

void createThreads(int k){
struct threadData threadData[k];

int numThreads = k;
int i = 0;
int err = 0;

pthread_t *threads = static_cast<pthread_t*>(malloc(sizeof(pthread_t) * numThreads));
for(i = 0;i<numThreads;i++){

    threadData[i].thread_id = i;
    threadData[i].startIndex = ((N/k)*i);
    threadData[i].stopIndex = ((N/k)*(i+1));

    err = pthread_create(&threads[i], NULL, foo, (void *)&threadData[i]);


    if(err != 0){
        printf("error creating thread\n");
    }
}
}

这里,N和k是整数,N/k的余数保证为0。 包括 createThreads(numThreads); in main 会导致我的程序出现段错误,将其注释掉会解决这个问题,但是我放入 createThreads 中的任何 printf 调试语句(即使在函数内的第一行)都不会显示,所以我对如何调试感到很困惑这个。感谢所有帮助。

我想问题是您的 arg 参数在 createThreads 函数的堆栈上:

struct threadData threadData[k];

所以一旦你的线程被创建并且 运行 和 createThreads returns,threadData 就不再有效,所以你的线程函数不应该接触参数数据。否则它的未定义行为和崩溃。

因此,要修复它,您应该将 threadData 设为全局(在 createThreads 之外),或者对其进行 malloc。