fork socket注意缓冲区

读coolshell最近的篇文章
http://coolshell.cn/articles/7965.html
一个fork的面试题,有感

http为啥要有个头呢,因为头记录了一些信息
比如长度
有了长度,c的代码才好控制,设置buffer的长度,
否则就会造成这个fork的时候,把没输出的缓冲也复制的状况

还有就是socked的时候
没有\n,导致本来应该多次输出的变成单行输出
参考《linux高级程序设计》第五章的badserver,
在这
http://haoningabc.iteye.com/blog/1616472


缓冲缓冲缓冲缓冲缓冲缓冲缓冲缓冲缓冲
头的作用之一就是标记缓冲啊
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
 
int main(void)
{
   int i;
   for(i=0; i<2; i++){
      fork();
      printf("-");
   }
 
   return 0;
}


#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main(void)
{
   int i;
   for(i=0; i<2; i++){
      fork();
      //注意:下面的printf有“\n”
      printf("ppid=%d, pid=%d, i=%d \n", getppid(), getpid(), i);
   }
   sleep(10); //让进程停留十秒,这样我们可以用pstree查看一下进程树
   return 0;
}


pstree -p | grep fork

你可能感兴趣的:(socket)