From a1b9fc8bd8e566f12de721f0081071e6f5e15240 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 28 Aug 2018 12:09:25 -0600 Subject: [PATCH] apps/system/cu: SIGKILL is more appropriate that SIGINT in this circustance. --- system/cu/cu_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/cu/cu_main.c b/system/cu/cu_main.c index 0aa9b1975..c909d3014 100644 --- a/system/cu/cu_main.c +++ b/system/cu/cu_main.c @@ -284,7 +284,7 @@ int cu_main(int argc, FAR char *argv[]) memset(&sa, 0, sizeof(sa)); sa.sa_handler = sigint; - sigaction(SIGINT, &sa, NULL); + sigaction(SIGKILL, &sa, NULL); while ((option = getopt(argc, argv, "l:s:eor?")) != ERROR) {