摘要: 1 #include <stdio.h> 2 #include <unistd.h> 3 #include <stdlib.h> 4 #include <sys/param.h> 5 #include <sys/stat.h> 6 #include <sys/types.h> 7 #include <fcntl.h> 8 #include <signal.h> 9 10 void my_daemon() {11 int pid, fd;12 13 // 1.转变为后台进程14 if ((pid = 阅读全文
posted @ 2011-03-09 21:51 F.N. 阅读(4347) 评论(0) 推荐(2) 编辑