pthread_create
时间: 2023-05-23 08:07:05 浏览: 99
linux创建线程之pthread_create的具体使用
A:pthread_create是一个POSIX线程库函数,用于创建一个新的线程。它的原型如下:
```c
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg);
```
其中,thread指向线程标识符的指针,attr用于设置线程属性(通常可以为NULL),start_routine是新线程要运行的函数,arg是这个函数的参数。调用成功返回0,否则返回错误代码。使用pthread_create可在单个进程中创建多个执行流,实现多任务处理。
阅读全文