- 论坛徽章:
- 0
|
我知道创建线程用的是 pthread_create(&id1,NULL,(void *)function_name(void),NULL);
请问各位大侠:
怎样才可以把函数的参数传进去 呢?如:
#include <stdio.h>
#include <pthread.h>
struct download
{ int aa;
int bb;
int cc;
};
void thread(struct download *p)
{ while(p->aa)
{printf(":%d\n",p->bb++);sleep(1);}
}
int main(void)
{
pthread_t id1;
int t=1,ret;
struct download down={11,22,33};
struct download * pp;
pp=&down;
ret=pthread_create(&id1,NULL,(void *)thread(),&down);
pthread_join(id1,NULL);
return (0);
}
pthread_create()的第三个参数该怎么写?? 望答复!!急!!谢谢了 |
|