我正在尝试创建一个线程,从我记得这应该是正确的方法:
#include dio.h>
#include
而我得到的错误是这个:
test.c: In function ‘main’: test.c:28: warning: passing argument 3 of
‘pthread_create’ from incompatible pointer type
/usr/include/pthread.h:227: note: expected ‘void * (*)(void *)’ but
argument is of type ‘void (*)(int)’
我无法更改SimpleThread函数,因此更改参数的类型不是一个选项,即使我已经尝试过它也不起作用.
我究竟做错了什么?
最佳答案
SimpleThread应声明为
void* SimpleThread(void *args) {
}
将参数传递给线程时,最好为它们定义一个结构,将指向该结构的指针传递给void *,然后在函数内部转换回正确的类型.