wait((int *)0) 的含义
一个使用这样的等待函数的程序是:
#include<stdio.h>
#include<stdlib.h>
int main()
{
int pid,fd[2]; int n; char line[20];
if(pipe(fd)<0) {
printf("Error creating pipe");
} else {
pid=fork();
if(pid<0) {
printf("Error while forking");
} else {
if(pid>0) {
close(fd[0]);
write(fd[1],"Hello\n",6);
while(wait((int *)0)!=pid);
} else {
close(fd[1]);
n=read(fd[0],line,20);
if(n<0)
printf("Error reading a file");
write(1,line,n);
}
}
}
return 0;
}
One such program that uses a wait function like this is this one:
#include<stdio.h>
#include<stdlib.h>
int main()
{
int pid,fd[2]; int n; char line[20];
if(pipe(fd)<0) {
printf("Error creating pipe");
} else {
pid=fork();
if(pid<0) {
printf("Error while forking");
} else {
if(pid>0) {
close(fd[0]);
write(fd[1],"Hello\n",6);
while(wait((int *)0)!=pid);
} else {
close(fd[1]);
n=read(fd[0],line,20);
if(n<0)
printf("Error reading a file");
write(1,line,n);
}
}
}
return 0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅man wait(2)。
wait((int *)0)
调用waitpid(-1, (int *)0, 0)
。 手册页指出:这里,
status
为 NULL (0)。 因此,您对wait
的调用会等待任何子进程中的状态更改,并且不会返回状态。 该调用仅检查特定子进程(在您的情况下为pid
)是否发生状态更改。See man wait(2).
wait((int *)0)
callswaitpid(-1, (int *)0, 0)
. The man page states:Here,
status
is NULL (0). Thus, your call towait
waits for a state change in any child process, and does not return a status. The call merely checks to see if a state change occurred for a specific child process (pid
in your case).stager的答案是正确的。 但应该注意的是,强制转换是完全不必要的,因为根据标准,指针上下文中使用的 0 是 NULL 指针。
stager's answer is correct. Though it should be noted that the cast is entirely unnecessary since according to the standard, 0 used in a pointer context is the NULL pointer.
参数
status_ptr
指向wait()
可以存储状态值的位置。 如果子进程显式返回零状态,则该状态值为零。 如果不为零,则可以使用状态分析宏对其进行分析,如下面的“状态分析宏”中所述。https:// www.ibm.com/docs/en/zos/2.1.0?topic=functions-wait-wait-child-process-end
The argument
status_ptr
points to a location wherewait()
can store a status value. This status value is zero if the child process explicitly returns zero status. If it is not zero, it can be analyzed with the status analysis macros, described in “Status Analysis Macros,” below.https://www.ibm.com/docs/en/zos/2.1.0?topic=functions-wait-wait-child-process-end