c语言pthread_create
时间: 2023-09-11 18:06:36 浏览: 88
Pthread编程
5星 · 资源好评率100%
pthread_create函数是C语言中用于创建一个新的线程的函数。它的原型如下:
```c
#include <pthread.h>
int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine) (void *), void *arg);
```
这个函数会创建一个新的线程,并将新线程的标识符存储在thread指针指向的内存位置。新线程的执行将从start_routine函数开始,start_routine函数的参数是一个指向void的指针,可以传递任意类型的数据给新线程。
在创建线程时,还可以通过attr参数传递线程属性,例如设置线程的栈大小、调度策略等。如果不需要设定特定的属性,可以将attr参数设为NULL。
创建线程成功时,pthread_create函数返回0,否则返回一个非零的错误码,表示创建线程失败。
下面是一个简单的例子,演示如何使用pthread_create函数创建一个新线程:
```c
#include <stdio.h>
#include <pthread.h>
void *thread_func(void *arg) {
printf("Hello from the new thread!\n");
pthread_exit(NULL);
}
int main() {
pthread_t thread;
// 创建新线程
int ret = pthread_create(&thread, NULL, thread_func, NULL);
if (ret != 0) {
printf("Failed to create thread.\n");
return 1;
}
// 等待新线程结束
pthread_join(thread, NULL);
printf("Back to the main thread.\n");
return 0;
}
```
这个例子中,主线程调用pthread_create函数创建一个新线程,并传递给它一个名为thread_func的函数作为新线程的入口。新线程会打印一条消息,然后调用pthread_exit函数退出。主线程使用pthread_join函数等待新线程结束后再继续执行。
注意:在使用pthread_create函数时,需要链接pthread库,可以在编译时加上-lpthread选项。例如:
```
gcc -o program program.c -lpthread
```
阅读全文