In the Linux environment, how can I send a kill signal to a process, while making sure that the exit code returned from that process is 0? Would I have to do some fancy GDB magic for this, or is there a fancy kill signal I'm unaware of?
Test case:
cat; echo $?
killall cat
Trying various kill signals only offers different return signals, such as 129, 137, and 143. My goal is to kill a process which a script runs, but make the script think it was successful.
You can attach to the process using GDB and the process ID and then issue the
call
command withexit(0)
as an argument.call
allows you to call functions within the running program. Callingexit(0)
exits with a return code of 0.As a one-line tool:
No. When the shell catches
SIGCHLD
it unconditionally sets the return value appropriately to a non-zero value, so this would require modification of either the script or of the shell.This one-liner worked for me:
A bit hacky way, but..
You can create a wrapper to your process, overriding SIGCHLD Handler. For example:
After that you can make your script running this wrapper instead of your process by putting it earlier in $PATH and renaming to the same name.
I m not sure but this will exit with a 0 if any of the listed signals are received. You could perform other actions including calling a function, etc.
To make sure the
kill
orkillall
command doesn't break the shell (like in a bash script withset -e
), or make sure the line withkill
exits with 0. We may tryor