- 论坛徽章:
- 0
|
代码很简单:
父进程向管道中写入"Hello,World!\n",子进程将管道中的数据读出存储到buf2,然后送到标准输出中。
问题是如果要写入的字符串超过了BUFFER_SIZE,应该怎样编写代码呢?求指点迷津阿
附上代码:- #include <stdio.h>
- #include <unistd.h>
- #include <sys/types.h>
- #include <limits.h>
- #include <stdlib.h>
- #include <string.h>
- #define BUFFER_SIZE 100
- int main(int argc, char **argv)
- {
- int fd[2];
- char buf1[BUFFER_SIZE] = "Hello,World!\n" ;
- char buf2[BUFFER_SIZE];
- pid_t pid;
- int len;
- if((pipe(fd))<0)
- {
- printf("pipe failed\n");
- }
- if((pid = fork())<0)
- {
- printf("fork failed\n");
- }
- else if(pid>0)
- {
- close(fd[0]);
- write(fd[1],buf1,strlen(buf1));
- exit(0);
- }
- else
- {
- wait(2);
- close(fd[1]);
- len = read(fd[0],buf2,BUFFER_SIZE);
- if(len < 0)
- {
- printf("process failed when read\n");
- }
- else
- {
- write(STDOUT_FILENO,buf2,len);
- }
- exit(0);
- }
- return 0;
- }
复制代码 我想请教一下,如果要写入的数据比BUFFER_SIZE 还要大该怎么实现呢? |
|