首页 > 编程 > C > 正文

Linux C 获取进程退出值的实现代码

2020-01-26 16:07:04
字体:
来源:转载
供稿:网友
如以下代码所示:
复制代码 代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <errno.h>
int main(int argc, char *argv[])
{
 pid_t pid;
 int stat;
 int exit_code;

 pid = fork();
 if(pid == 0)
 {
  sleep(3);
  exit(5);
 }
 else if( pid < 0 )
 {
  fprintf(stderr, "fork failed: %s", strerror(errno));
  return -1;
 }

 wait(&stat); // 等待一个子进程结束
 if(WIFEXITED(stat)) // 如果子进程通过 return, exit, _exit 正常结束, WIFEXITED() 返回 true
 {
  exit_code = WEXITSTATUS(stat);
  printf("child's exit_code: %d/n", exit_code);
 }

 return 0;
}

参考:  "man 2 wait"
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选