반응형 pipe21 [popen & pipe & dup] 좋은 예 = popen의 좋은 예 = BLOCK / NON-BLOCK 세팅등 = ManPIPE(2) #include int pipe(int pipefd[2]); int pipe2(int pipefd[2], int flags); // O_NONBLOCK O_CLOEXECPOPEN(3) #include FILE *popen(const char *command, const char *type); int pclose(FILE *stream); DUP(2) #include int dup(int oldfd); int dup2(int oldfd, int newfd); int dup3(int oldfd, int newfd, int flags); dup2>newfd 가 정상 fd이면 먼저 내부적으로 close(nwefd)를 하고.. 2014. 11. 14. 이전 1 다음 반응형