Pthread_create函数
时间: 2024-03-29 15:32:10 浏览: 119
linux创建线程之pthread_create的具体使用
pthread_create函数是一个用于创建线程的函数,它属于POSIX线程库(pthread)的一部分。该函数的原型如下:
```c
int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine) (void *), void *arg);
```
该函数接受四个参数:
1. `thread`:指向pthread_t类型的指针,用于存储新创建线程的标识符。
2. `attr`:指向pthread_attr_t类型的指针,用于设置新线程的属性。可以传入NULL,表示使用默认属性。
3. `start_routine`:指向函数的指针,该函数是新线程要执行的函数。该函数必须具有以下形式:`void* function_name(void* arg)`,其中`arg`是传递给该函数的参数。
4. `arg`:传递给`start_routine`函数的参数。
当调用pthread_create函数时,它会创建一个新的线程,并将其加入到进程中。新线程会执行`start_routine`函数,并将`arg`作为参数传递给该函数。如果线程创建成功,pthread_create函数会返回0;否则,返回一个非零的错误码。
需要注意的是,新线程的执行顺序和主线程的执行顺序是不确定的,它们可能会并发执行。
阅读全文