当前位置: 技术问答>linux和unix
当管道和wait命令相遇时,我就遇到了麻烦。
来源: 互联网 发布时间:2016-09-10
本文导语: #include #include #include #include main() { pid_t pid; int x,buf1,buf2; int fd[2]; pid=fork(); pipe(fd); if(pid
#include
#include
#include
#include
main()
{
pid_t pid;
int x,buf1,buf2;
int fd[2];
pid=fork();
pipe(fd);
if(pid
#include
#include
#include
main()
{
pid_t pid;
int x,buf1,buf2;
int fd[2];
pid=fork();
pipe(fd);
if(pid