phread_create
时间: 2023-11-11 10:00:08 浏览: 68
`pthread_create` 是一个 POSIX 线程库函数,用于创建一个新的线程。它的原型如下:
```c
#include <pthread.h>
int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine) (void *), void *arg);
```
其中,`thread` 是指向线程标识符的指针,`attr` 是指向线程属性的指针,`start_routine` 是指向线程函数的指针,`arg` 是传递给线程函数的参数。
`pthread_create` 函数成功时返回 0,失败时返回一个错误码。
阅读全文