pthread_create()的各个参数
时间: 2023-01-11 20:55:36 浏览: 86
pthread_
pthread_create()函数有四个参数:
1. pthread_t *thread:用来存储新创建线程的线程ID。
2. const pthread_attr_t *attr:用来设置线程的属性,一般设为NULL。
3. void *(*start_routine)(void *):新线程的入口函数。
4. void *arg:传递给新线程的入口函数的参数。
pthread_create()函数会创建一个新的线程,并立即执行入口函数 start_routine,传入的参数为arg.
阅读全文