一次 Docker 容器内大量僵尸进程排查分析( 五 )


#include <stdio.h>#include <unistd.h>int main() {printf("Hello, World!n");fork();fork();fork();sleep(100);return 0;}



推荐阅读