C语言多线程
作者:互联网
pthread_create的含义为
intpthread_create(pthread_t*tidp,constpthread_attr_t*attr,void(*start_rtn(void*),void*arg);
pthread_ttidp为指向线程标识符的指针。
constpthread_attr_tattr用来设置线程属性。
void*(start_rtn)(void)是线程运行函数的起始地址。
void*arg是运行函数的参数。
而函数pthread_create的含义intpthread_create(pthread_t*tidp,constpthread_attr_t*attr,void(*start_rtn(void*),void*arg);
pthread_ttidp为指向线程标识符的指针。
constpthread_attr_tattr用来设置线程属性。
void*(start_rtn)(void)是线程运行函数的起始地址。
void*arg是运行函数的参
标签:rtn,attr,void,arg,C语言,线程,pthread,多线程 来源: https://blog.csdn.net/weixin_45556441/article/details/110711271