From 7a93ab190e5fea78edb21affeb0189a9d61a2cd8 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 18 Apr 2007 12:25:41 +0200 Subject: [PATCH 1/1] Revert "We do need to send a SIGQUIT to a process/thread, even if it is running" This reverts commit ef5fffa591e583de26c6ce14f9448104d6dfbe79. The problem with the commit is that if we SIGQUIT a thread, it gets exited without updating runtime/etc info. And then we don't get a new status display on exit. Signed-off-by: Jens Axboe --- fio.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fio.c b/fio.c index 565b3d22..d8c14333 100644 --- a/fio.c +++ b/fio.c @@ -70,7 +70,10 @@ static void terminate_threads(int group_id) for_each_td(td, i) { if (group_id == TERMINATE_ALL || groupid == td->groupid) { - if (td->runstate <= TD_RUNNING) + /* + * if the thread is running, just let it exit + */ + if (td->runstate < TD_RUNNING) kill(td->pid, SIGQUIT); td->terminate = 1; td->o.start_delay = 0; -- 2.25.1