
Linux应用开发
木南山牙
不积跬步,无以至千里。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux应用开发之------守护进程
#include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <stdlib.h> #include <fcntl.h> #include <string.h> #define DEN_BUF 1024 int main(){ pi...原创 2018-06-05 15:05:40 · 216 阅读 · 0 评论 -
父子进程无名管道通信
#include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <stdlib.h> #include <fcntl.h> #include <string.h> #define DEN_BUF 1024 /*1.子进程通过无名管道通信方式发送数...原创 2018-06-11 08:48:57 · 2315 阅读 · 0 评论