摘要: 1 #include <cstdio> 2 3 using namespace std; 4 5 void seq_to_tree(char seq[]) { 6 puts("seq_to_tree:"); 7 char tmp[20]; 8 printf("sizeof(seq): %d\n", sizeof(seq)); 9 printf("siezof(tmp): %d\n", sizeof(tmp));10 }11 12 int main() {13 char seq[10];14 puts("main( 阅读全文
posted @ 2011-03-13 11:29 F.N. 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 1. 每个进程组有1个或多个进程组成,可能有一个进程组长,也可能没有2. 每个会话有1个或多个进程组组成,可能有一个领头进程,也可能没有好,贴上测试代码: 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 <signa 阅读全文
posted @ 2011-03-10 08:18 F.N. 阅读(1358) 评论(0) 推荐(0) 编辑
摘要: 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) 编辑