According to the POSIX standard regarding signals (see "Standard signals" section), both SIGKILL and SIGINT have as default action Term. However, this seems not to be the case when the receiving process has been stopped via SIGSTOP (or SIGTSTP).
For the sake of simplicity, let's say I create a program with an infinite loop:
int main(){
while(1);
}
compile and run it
$ ./program
Then I press CtrlZ to stop it. This causes a SIGTSTP signal to be delivered to this process. Now, if I send a SIGINT signal to the process via kill -SIGINT pid, and look at the process table: ps -aux, I see that it has not been terminated. However, if I send a kill -SIGKILL pid it does get terminated.
Why does SIGINT not behave in the same way as SIGKILL, if they both have the same default action (i.e. Term)?