1
以下のコードを記述しましたが、実行するとセグメント化エラーが発生します。それは正しくコンパイルします。私の間違いはどこですか?スレッドからのセグメント化エラー
#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;
}
すべてのヒントが歓迎されます。おそらくセグメンテーションフォルトの原因となるpthread_create()
にNULLを渡している
1):
は、あなたがのserveralの問題を持っているあなたに