摘要: 原文地址:http://www.cnblogs.com/hebaichuanyeah/p/3349061.html感觉linux环境下C编程主要是一堆库函数的调用。一.关于linux进程控制关于进程的创建。linux中fork()和vfork()函数可以创建一个子进程。其中vfork()创建的子进程与父进程共享数据,仅子进程先与父进程运行。代码:fork()创建子进程#include "unistd.h"#include "stdio.h"main(){ pid_t result; result = fork(); if(result == -1) pr 阅读全文
posted @ 2013-10-02 01:38 默默地EEer 阅读(773) 评论(0) 推荐(0) 编辑