码迷,mamicode.com
首页 > 系统相关 > 详细

【APUE | 08】进程控制

时间:2018-09-02 18:43:45      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:get   html   width   一个   僵尸   www.   c4c   border   tab   

函数wait和waitpid

博文链接:

 

 

1 #include <sys/types.h>
2 #include <sys/wait.h>
3 
4 pid_t wait(int *status);
5 
6 pid_t waitpid(pid_t pid, int *status, int options);

pid:一共分为四种情况:

pid 参数 解释
< -1 为归属于进程组 ID 为 pid 参数的绝对值的进程组中的任何一个子进程收尸
== -1 为任意一个子进程收尸
== 0 为与父进程同一个进程组中的任意一个子进程收尸
> 0 为一个 PID 等于参数 pid 的子进程收尸

【APUE | 08】进程控制

标签:get   html   width   一个   僵尸   www.   c4c   border   tab   

原文地址:https://www.cnblogs.com/sunbines/p/9574285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!