QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 738|回复: 0

测试进程的退出代码

[复制链接]
发表于 2005-5-5 09:23:05 | 显示全部楼层 |阅读模式
#include <sys/types.h>
#include <sys/wait.h>
int main()
{
        pid_t pid=fork();
        if(pid==0)
        {
                exit(5);
        }
        else if(pid>0)
        {
                int status;
                int option=WUNTRACED;
                waitpid(pid,&status,option);
                if(WIFEXITED(status))
                        printf("return(exit) code is %d\n",WEXITSTATUS(status));

                if(WIFSIGNALED(status))
                        printf("term signal's ID is %d\n",WTERMSIG(status));

                if(WIFSTOPPED)//you must use WUNTRACED as a param in waitpid
                        printf("stop sigal's id is %d\n",WSTOPSIG(status));
        }
}

程序运行结果:return(exit) code is 5,请问如果要让它出现后面两种结果,该怎样编程阿,谢谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-6 03:29 , Processed in 0.048755 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表