Revert "added childeren in group so parent can kill them after exit"

This reverts commit 29d9283140.
This commit is contained in:
2026-05-25 15:10:14 +03:00
parent 29d9283140
commit 90f149e91e
-32
View File
@@ -6,22 +6,10 @@
#include <dirent.h>
#include <ctype.h>
#include <time.h>
#include <signal.h>
#define DEFAULT_NUM_LEN 512
static volatile sig_atomic_t stop_requested = 0;
static pid_t fork_pgid = -1;
static void handle_termination(int sig) {
(void)sig;
stop_requested = 1;
if (fork_pgid > 0) {
killpg(fork_pgid, SIGTERM);
}
}
char *itoa(long num, char *strnum, size_t size){
int isNegative = 0;
@@ -272,17 +260,6 @@ int main(void)
perror("fopen csv");
return 1;
}
if (setpgid(0, 0) == 0) {
fork_pgid = getpgrp();
}
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = handle_termination;
sigaction(SIGTERM, &sa, NULL);
sigaction(SIGINT, &sa, NULL);
fprintf(csv, "timestamp,elapsed_s,load1,load5,load15,mem_total_kb,mem_available_kb,mem_used_kb,proc_count,thread_count_total,pid,cpu_pct,sys_cpu_pct,forks_per_sec,rss_kb,vsz_kb,stack_kb,heap_kb,proc_threads\n");
long count = 0;
@@ -302,9 +279,6 @@ int main(void)
}
while (1) {
if (stop_requested) {
break;
}
pid_t pid = fork();
if (pid < 0) {
@@ -377,12 +351,6 @@ int main(void)
}
}
if (fork_pgid > 0) {
signal(SIGTERM, SIG_IGN);
signal(SIGINT, SIG_IGN);
killpg(fork_pgid, SIGTERM);
}
fclose(csv);
return 0;