mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-21 21:32:56 +00:00
Use SIGTERM in replace of SIGQUIT
SIGTERM is the normal signal to use when instructing a process to exit. The only difference is that an unhandled SIGQUIT is meant to generate a coredump, which is not what we want, but in practice I encountered an issue where SIGTERM seemed to be deliverable more reliably than SIGQUIT (in tests using multiple signal helpers). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
+1
-1
@@ -372,7 +372,7 @@ void igt_waitchildren(void);
|
||||
/**
|
||||
* igt_helper_process_t:
|
||||
* @running: indicates whether the process is currently running
|
||||
* @use_SIGKILL: whether the helper should be terminated with SIGKILL or SIGQUIT
|
||||
* @use_SIGKILL: whether the helper should be terminated with SIGKILL or SIGTERM
|
||||
* @pid: pid of the helper if @running is true
|
||||
* @id: internal id
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user