用发呆的时间来理清自己的思绪
发布时间:2014-06-22 19:51:54
点击(此处)折叠或打开#include <stdio.h>#include <string.h>#include <errno.h>#include <stdlib.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>.........【阅读全文】
发布时间:2014-06-22 17:43:23
点击(此处)折叠或打开/************************************************** * 功能:在fork之前用文件IO打开文件,然后创建子进程 * 父进程循环从键盘读入数据写入到文件,子进程 *  .........【阅读全文】
发布时间:2014-06-22 15:41:19
进程创建时,伴随着父子进程拷贝,处理代码段没有被子进程拷贝以外,子进程几乎拷贝了父进程的所有资源,其中打开的文件表项就是其中之一:程序代码如下:点击(此处)折叠或打开#include <stdio.h>#include <string.h>#include <er.........【阅读全文】
发布时间:2014-06-22 11:18:24
点击(此处)折叠或打开#include <stdio.h>#include <stdlib.h>#include <unistd.h>/******************************************************* * 1.fork之后子父进程的执行顺序由调度算法决定,即有OS决定.........【阅读全文】