您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在 Linux 系统中,exit() 函数用于终止一个进程
当在多线程程序中使用 exit() 函数时,需要注意以下几点:
以下是一个简单的多线程程序示例,展示了如何使用 pthread_exit() 和 pthread_join() 函数来同步线程:
#include<stdio.h>
#include <stdlib.h>
#include <pthread.h>
void* thread_function(void *arg) {
int thread_id = *((int *)arg);
printf("Thread %d is running\n", thread_id);
sleep(1);
printf("Thread %d is done\n", thread_id);
pthread_exit(NULL);
}
int main() {
const int NUM_THREADS = 5;
pthread_t threads[NUM_THREADS];
int thread_ids[NUM_THREADS];
for (int i = 0; i < NUM_THREADS; i++) {
thread_ids[i] = i;
pthread_create(&threads[i], NULL, thread_function, &thread_ids[i]);
}
for (int i = 0; i < NUM_THREADS; i++) {
pthread_join(threads[i], NULL);
}
printf("All threads are done\n");
return 0;
}
在这个示例中,我们创建了 5 个线程,每个线程都执行 thread_function() 函数。在主线程中,我们使用 pthread_join() 函数等待所有线程完成。这样可以确保所有线程都有机会完成其工作并正确地清理资源。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。