これが機能しない理由がわかりません
#include <iostream>
#include <pthread.h>
using namespace std;
void *print_message(){
cout << "Threading\n";
}
int main() {
pthread_t t1;
pthread_create(&t1, NULL, &print_message, NULL);
cout << "Hello";
return 0;
}
エラー:
[説明、リソース、パス、場所、タイプ] 'int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)' の引数 3 を初期化します threading.cpp threading/src 24 行目 C/ C++ の問題