Centos – Differences in behavior of kill(pid, SIGINT) between Debian and Red Hat based distros
I'm encountering a discrepancy in the behavior of my code when using kill(pid, SIGINT) between Debian 12 and CentOS 7 in a virtual machine. Previously, this code worked as expected in Fedora 39. #include <iostream> #include <unistd.h> #include <sys/types.h> #include…