我使用的操作系统是ubuntu 12.04
报错的代码段如下:
pthread_t id;
int ret = pthread_create(&id,NULL,(void *)func,NULL);
然后报错内容是:invalid use of member(did you forget the '&'?)
这句话我知道啥意思,但是不知道哪里少了取地址符,求大神赐教
我使用的操作系统是ubuntu 12.04
报错的代码段如下:
pthread_t id;
int ret = pthread_create(&id,NULL,(void *)func,NULL);
然后报错内容是:invalid use of member(did you forget the '&'?)
这句话我知道啥意思,但是不知道哪里少了取地址符,求大神赐教
搞定了,是线程函数要使用静态类型