发布时间:2013-08-21 16:56:49
#include ; main () { pid_t pid; pid=fork(); if (pid < 0) printf("error in fork!"); else if (pid == 0) printf("i am the child process, my process id is %dn",getpid()); else printf("i am the paren.........【阅读全文】
发布时间:2013-08-21 16:56:43
1 )如何生成 coredump 文件 ?登陆 LINUX 服务器,任意位置键入 echo "ulimit -c 1024" >> /etc/profile退出 LINUX 重新登陆 LINUX键入 ulimit -c如果显示 1024 那么说明 coredump 已.........【阅读全文】
发布时间:2013-08-21 16:56:34
先来看一下system()函数的简单介绍: 1#include <stdlib.h> 2int system(const char *command);.........【阅读全文】