标签:else err doc 分享 pid_t 阶段 linu process count
现在到docker的实施阶段,
其底层的namespace,cgroup应该深入了解了。
其调用的API也慢慢熟悉起来吧。
#include <unistd.h> #include <stdio.h> int main() { pid_t fpid; //int count = 0; fpid = fork(); if (fpid < 0) printf("error in fork!"); else if (fpid == 0) { printf("I am child. Process id is %d\n", getpid()); } else { printf("I am parent. Process id is %d\n", getpid()); } return 0; }
标签:else err doc 分享 pid_t 阶段 linu process count
原文地址:http://www.cnblogs.com/aguncn/p/6836332.html