标签: process operating-system fork
嘿伙计我有以下问题我无法理解这个算法的工作原理对我有帮助,
int main(){ pid_t x= fork(); if(x == 0){ fork(); } else { fork(); } fork(); }