-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Description
I was debugging a problem with a filesystem where df was hanging. When I tried to kill the process, I discovered that kill -9 wasn't sufficient to terminate the process. I had to resort to superkill (kill -K) to terminate it. The problem that I encountered is that bash treats kill as a shell builtin, and it refuses the -K argument as an invalid signal. I had to call /bin/kill -K to actually issue the signal.
Would it be possible to add a patch to bash so that the shell builtin is able to handle this signal? There is a __superkill() API that could be used in this case.
IgorTodorovskiIBM
Metadata
Metadata
Assignees
Labels
No labels