Top "Sigkill" questions

On POSIX-compliant platforms, SIGKILL is the signal sent to a process to cause it to terminate immediately.

How to gracefully handle the SIGKILL signal in Java

How do you handle clean up when the program receives a kill signal? For instance, there is an application I …

java sigkill
How to stop 'uninterruptible' process on Linux?

I have a VirtualBox process hanging around which I tried to kill (KILL/ABORT) but without success. The parent pid …

linux signals sigabrt kill-process sigkill
SIGKILL signal Handler

I have a requirement to write to a log file on reception of any terminate command like SIGTERM AND SIGKILL. …

linux signals sigkill
SIGTERM unable to kill process

I have a single-threaded process which is not dying on kill -TERM. The process signal mask does not show that …

signals kill sigkill sigterm
SIGKILL signal handling

If a linux process is waiting for I/O (i.e it is in SLEEP state) and a SIGKILL signal …

linux unix posix sigkill posix-api
Program received signal SIGKILL exception comes up when I quit in the multitasking bar (iPhone)

When I double tap the home button and quit out of my app from the multitasking bar and open the …

iphone objective-c ios sigkill
python sigkill catching strategies

I was wondering if there was any way to catch the sigkill from the OOM killer. I have a task …

python linux memory sigkill
Restart a node.js app from code level

I've an app which initially creates static config files (once) and after files were written I need to reinitialize/restart …

javascript node.js sigkill
Killing the children with the parent

I have a program spawning and communicating with CPU heavy, unstable processes, not created by me. If my app crashes …

python subprocess sigkill
Running SpringBootApplication PostConstruct and PreDestroy

I have troubles with running spring application in docker container (both spring and docker have latest versions in my environment). …

java spring docker spring-boot sigkill