If I send a SIGTERM signal to a process using the kill command, I expect an exit code, but I always get 0 (zero) when running the below command after killing a process:

echo $?

According to the answer in this post, I should get 143 when sending a SIGTERM to a process: Always app Java end with "Exit 143" Ubuntu

But I don“t get that exit code. Why?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The exit code you get is for the kill command itself. 0 means it succeeded, i.e. the other process got the signal you sent it. kill just doesn't report the exit status for the process, since it can't even be sure the other process exited as a result of the signal it sent.

link|improve this answer
Ah, ok! Is there any way to check the exit code of the process that is beeing killed? – Rox Nov 24 '11 at 12:17
@Rox: I believe only the parent process has direct access to the exit status, so not directly. – larsmans Nov 24 '11 at 12:20
1  
It is possible to check the exit code of the process being killed. Use ptrace to attach to it before you send the signal. (This is probably more trouble than it is worth!) Alternatively, have the parent of the killed process report its exit status. – William Pursell Nov 24 '11 at 17:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.