千锋教育-做有情怀、有良心、有品质的职业教育机构

手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

当前位置:首页  >  技术干货  > C++中的wait函数详解

C++中的wait函数详解

来源:千锋教育
发布人:xqq
时间: 2023-11-22 18:53:35 1700650415

一、wait函数的介绍

C++中的wait函数是一个非常有用的函数,用于等待一个子进程的退出,防止“僵尸进程”。

wait函数的格式如下:


pid_t wait(int *status);

其中,pid_t是进程ID的类型,而int\*则是表示子进程退出状态的指针。

二、wait函数在哪个头文件中定义

wait函数在头文件中定义。


#include 

三、wait函数与锁的使用

在使用wait函数时,我们通常需要使用锁对进程资源进行保护,避免多个进程同时对同一资源进行操作,导致数据出错。

下面是一个使用锁的示例程序:


#include 
#include 
#include 
#include 

using namespace std;

int value = 0;
pthread_mutex_t mutex;

void *child_thread(void *arg) {
    pthread_mutex_lock(&mutex);
    value++;
    cout << "child-thread: value = " << value << endl;
    pthread_mutex_unlock(&mutex);
}

int main() {
    pthread_mutex_init(&mutex, NULL);

    pthread_t tid;
    pthread_create(&tid, NULL, child_thread, NULL);

    pthread_mutex_lock(&mutex);
    value++;
    cout << "main-thread: value = " << value << endl;
    pthread_mutex_unlock(&mutex);

    wait(NULL);
    pthread_mutex_lock(&mutex);
    value++;
    cout << "main-thread: value = " << value << endl;
    pthread_mutex_unlock(&mutex);

    pthread_mutex_destroy(&mutex);

    return 0;
}

上面的程序中,我们通过使用pthread_mutex_t类型的mutex对象对value变量进行了保护,避免了两个线程同时对其进行操作导致数据出错的情况发生。

除了使用锁,我们还可以使用信号量、管道等方式对进程资源进行保护。

四、waitpid函数的使用

除了wait函数外,我们还可以使用waitpid函数来等待子进程的退出。

waitpid函数的格式如下:


pid_t waitpid(pid_t pid, int *status, int options);

其中,pid表示要等待的进程ID;status表示子进程退出状态的指针;options表示等待子进程的状态,可以为WNOHANG、WUNTRACED等。

下面是一个waitpid函数的示例程序:


#include 
#include 
#include 
#include 

using namespace std;

int main() {
    int status = 0;
    pid_t pid = fork();
    if (pid == 0) {
        cout << "child-process: pid = " << getpid() << endl;
        sleep(10);
        exit(1);
    } else {
        cout << "main-process: pid = " << getpid() << endl;
        waitpid(pid, &status, WUNTRACED);
        if (WIFEXITED(status)) {
            cout << "child-process exit normally, status = " << WEXITSTATUS(status) << endl;
        } else if (WIFSIGNALED(status)) {
            cout << "child-process exit by signal, signal = " << WTERMSIG(status) << endl;
        }
    }
    return 0;
}

在上面的程序中,我们使用waitpid函数等待子进程的退出,并且可以通过WIFEXITED、WIFSIGNALED等宏来获取子进程退出的方式。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。
10年以上业内强师集结,手把手带你蜕变精英
请您保持通讯畅通,专属学习老师24小时内将与您1V1沟通
免费领取
今日已有369人领取成功
刘同学 138****2860 刚刚成功领取
王同学 131****2015 刚刚成功领取
张同学 133****4652 刚刚成功领取
李同学 135****8607 刚刚成功领取
杨同学 132****5667 刚刚成功领取
岳同学 134****6652 刚刚成功领取
梁同学 157****2950 刚刚成功领取
刘同学 189****1015 刚刚成功领取
张同学 155****4678 刚刚成功领取
邹同学 139****2907 刚刚成功领取
董同学 138****2867 刚刚成功领取
周同学 136****3602 刚刚成功领取
相关推荐HOT