소스 검색

update do_pipe

master
杨浩然 3 년 전
부모
커밋
22a951d0b6
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      yeeshell.c

+ 2
- 2
yeeshell.c 파일 보기

@ -250,6 +250,7 @@ int do_pipe(char **pipe_arg_1, char **pipe_arg_2)
exit(0);
}
}
waitpid(prog_1, NULL, 0);
if ((prog_2 = fork()) == 0) /* Child process 2 */
{
@ -264,12 +265,11 @@ int do_pipe(char **pipe_arg_1, char **pipe_arg_2)
exit(0);
}
}
waitpid(prog_2, NULL, 0);
close(fds[0]);
close(fds[1]);
waitpid(prog_1, NULL, 0);
waitpid(prog_2, NULL, 0);
return 1;
}

불러오는 중...
취소
저장