【linux深入剖析】线程控制 | 多线程
在Linux中,可以使用pthread库来进行多线程编程。以下是一些常用的线程控制函数:
pthread_create
:创建一个新的线程。pthread_exit
:终止当前线程。pthread_join
:等待另一个线程终止。pthread_cancel
:尝试取消另一个线程。pthread_attr_init
:初始化线程属性。
下面是一个简单的示例,展示如何使用这些函数创建和控制线程:
#include <stdio.h>
#include <pthread.h>
void* thread_function(void* arg) {
printf("Hello, World! This is a thread.\n");
return NULL;
}
int main() {
pthread_t thread;
int ret;
// 创建线程
ret = pthread_create(&thread, NULL, thread_function, NULL);
if (ret != 0) {
printf("pthread_create failed.\n");
return 1;
}
// 等待线程结束
pthread_join(thread, NULL);
printf("Bye, World! This is the main thread.\n");
return 0;
}
在这个例子中,我们首先调用pthread_create
创建一个新线程,该线程将执行thread_function
函数。然后,主线程调用pthread_join
等待创建的线程结束。当pthread_join
返回时,子线程已经结束执行。最后,主线程输出一条消息并结束。
评论已关闭