pthread_create 创建线程组
时间: 2024-04-11 12:24:08 浏览: 127
pthread_create函数用于创建线程。下面是一个示例代码,演示如何使用pthread_create函数创建线程组[^1][^2]:
```c
#include <pthread.h>
#include <stdio.h>
void* thread_function(void* arg) {
int thread_id = *(int*)arg;
printf("This is thread %d\n", thread_id);
pthread_exit(NULL);
}
int main() {
pthread_t threads[5];
int thread_ids[5];
for (int i = 0; i < 5; i++) {
thread_ids[i] = i;
int result = pthread_create(&threads[i], NULL, thread_function, &thread_ids[i]);
if (result != 0) {
printf("Error creating thread %d\n", i);
}
}
pthread_exit(NULL);
}
```
在上面的代码中,我们首先定义了一个线程函数`thread_function`,它接受一个参数作为线程的ID,并打印出线程的ID。然后,在`main`函数中,我们创建了一个包含5个线程的线程组。我们使用一个循环来创建每个线程,并将线程ID作为参数传递给线程函数。最后,我们调用`pthread_exit`函数来等待所有线程结束。
阅读全文