execlp 对来自管道的输入进行“排序”卡住了,为什么?

execlp 对来自管道的输入进行“排序”卡住了,为什么?

sort正在等待,但是什么?我尝试了execlp("head", "head", "-n", "3", NULL);sort效果很好。

#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
#include <assert.h>
int main()
{
  int p[2], cat_pid, sort_pid;
  if (pipe(p) < 0) { assert(0 && "pipe fail"); }
  if ((cat_pid = fork()) == 0) { dup2(p[1], 1); execlp("cat", "cat", "text", NULL); assert(0 && "cat fail"); }
  if ((sort_pid = fork()) == 0) { dup2(p[0], 0); execlp("sort", "sort", NULL); assert(0 && "sort fail"); }
  waitpid(sort_pid, NULL, 0);
}

输入text是:

hello
world
foo
bar

答案1

sort等待 EOF 时,您需要关闭管道的写入端。一个在完成后关闭cat,另一个在父进程中。关闭父级管道的写入端,一切都会顺利。

man 7 pipe

如果引用管道写入端的所有文件描述符都已关闭,则尝试从管道读取(2)将看到文件结尾(读取(2)将返回0)。

相关内容