sched/signal/sig_default.c: fix compilation error when CONFIG_SIG_SIGPIPE_ACTION undefined

This commit is contained in:
raiden00pl 2020-01-15 14:42:32 +01:00 committed by patacongo
parent ab99842bd6
commit 02f619a8be
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
#if defined(CONFIG_SIG_SIGUSR1_ACTION) || defined(CONFIG_SIG_SIGUSR2_ACTION) || \
defined(CONFIG_SIG_SIGALRM_ACTION) || defined(CONFIG_SIG_SIGPOLL_ACTION) || \
defined(CONFIG_SIG_SIGKILL_ACTION)
defined(CONFIG_SIG_SIGKILL_ACTION) || defined(CONFIG_SIG_SIGPIPE_ACTION)
# define HAVE_NXSIG_ABNORMAL_TERMINANTION 1
#endif