在Linux系统中,pthread_create
函数用于创建一个新的线程。其原型如下:
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg);
其中,参数含义如下:
thread
:指向线程标识符的指针,用于标识新创建的线程。attr
:指向线程属性结构体的指针,用于设置线程的属性。 start_routine
:新线程所要执行的函数的指针。arg
:传递给 start_routine
函数的参数。pthread_create
函数会创建一个新的线程,并执行 start_routine
函数。该函数会返回0表示成功创建线程,否则返回一个非零的错误码。在创建线程成功后,新线程会开始执行 start_routine
函数,并传入 arg
参数。
需要注意的是,在使用 pthread_create
函数创建线程时,必须包含 pthread.h
头文件,并链接 -lpthread
选项以使用线程相关的函数。