gpt4 book ai didi

c - 来自线程的段错误

转载 作者:太空宇宙 更新时间:2023-11-04 02:34:07 25 4
gpt4 key购买 nike

我已经编写了下面的代码,但是当我运行它时它会带来段错误。它虽然编译正确。我的错误在哪里?

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
static int N = 5;
static void* run(void *arg) {
int *i = (int *) arg;
char buf[123];
snprintf(buf, sizeof(buf), "thread %d", *i);
return buf;
}

int main(int argc, char *argv[]) {
int i;
pthread_t *pt = NULL;
for (i = 0; i < N; i++) {
pthread_create(pt, NULL, run, &i);
}
return EXIT_SUCCESS;
}

欢迎任何提示。

谢谢

最佳答案

您有几个问题:

1) 您将 NULL 传递给 pthread_create(),这可能是出现段错误的原因。

2) 您不必等待线程完成(当 main 线程退出时,整个进程就结束了)。

3) 您正在将地址相同的变量i 传递给所有线程。这是一场数据竞赛

4) 您正在从线程函数返回局部变量 buf 的地址。

你可以像这样修复它:

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
static int N = 5;
static void* run(void *arg) {
int *i = (int *) arg;
char *buf = malloc(16);
snprintf(buf, 16, "thread %d", *i);
return buf;
}

int main(int argc, char *argv[]) {
int i;
void *ret;
int arr[N];
pthread_t pt[N];

for (i = 0; i < N; i++) {
arr[i] = i;
pthread_create(&pt[i], NULL, run, &arr[i]);
}

for (i = 0; i < N; i++) {
pthread_join(pt[i], &ret);
printf("Thread %d returned: %s\n", i, (char*)ret);
free(ret);
}
return EXIT_SUCCESS;
}

请注意,您不需要使用 pthread_join() 调用。您还可以从主线程调用 pthread_exit(),这样只有主线程退出而其他线程继续。

关于c - 来自线程的段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39832918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com