From c5dd6d8975fc36da778d08c21d3e051add6d3030 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 8 Oct 2014 14:14:05 -0600 Subject: [PATCH] net: use SIGTERM for terminate Signed-off-by: Jens Axboe --- engines/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/net.c b/engines/net.c index 8087207e..1d89db1c 100644 --- a/engines/net.c +++ b/engines/net.c @@ -1213,7 +1213,7 @@ static int fio_netio_setup(struct thread_data *td) static void fio_netio_terminate(struct thread_data *td) { - kill(td->pid, SIGUSR2); + kill(td->pid, SIGTERM); } #ifdef CONFIG_LINUX_SPLICE -- 2.25.1