apps/system/cu: SIGKILL is more appropriate that SIGINT in this circustance.

This commit is contained in:
Gregory Nutt 2018-08-28 12:09:25 -06:00
parent bb4c5c49ef
commit a1b9fc8bd8

View File

@ -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)
{