我想写一个“僵尸创造者”和“僵尸终结者”。要点是我想在一部分中创建僵尸并在代码的另一部分中终止它们。我正在使用 C。
例子:
create_zombie(); //let's say it's a spawn, using fork etc.
/* a houndred lines below */
kill_zombie(PID); // PID is determinated by user, I want to leave him the choice
我知道如何使用 fork(), if .. else 来做到这一点,但这不是重点。我正在寻找某种遥控器。那可能吗?让他睡很长时间可以解决吗?