Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
we saw that a child process of zedbox got killed with USR2 (no signal handler defaults to SIGTERM). My theory is that the following happened: 1. zedbox called fork() 2. now there are two zedbox processes 3. pkill finds two zedbox processes 4. child process of zedbox calls exec and remove USR2 handler 5. pkill sends USR2 to both PIDs 6. zedbox starts http debug as usual 7. child process (now supposed to do something different) gets killed perhaps fixes #4002 Signed-off-by: Christoph Ostarek <christoph@zededa.com>
- Loading branch information