This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 468a0f0991 sched: fix kconfig warning
468a0f0991 is described below
commit 468a0f0991b8603daec1c5eabac0f0da26e714c3
Author: Junbo Zheng <[email protected]>
AuthorDate: Tue Feb 21 21:46:40 2023 +0800
sched: fix kconfig warning
warning: SIG_ABRT (defined at sched/Kconfig:1481) has 'help' but empty help
text
Reference: https://dsa.cs.tsinghua.edu.cn/oj/static/unix_signal.html
Signed-off-by: Junbo Zheng <[email protected]>
---
sched/Kconfig | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sched/Kconfig b/sched/Kconfig
index 63beee916b..16c859ea7f 100644
--- a/sched/Kconfig
+++ b/sched/Kconfig
@@ -1484,6 +1484,10 @@ config SIG_ABRT
int "SIGABRT"
default 6
---help---
+ The SIGABRT signal is sent to a process to tell it to abort,
i.e. to
+ terminate. The signal is usually initiated by the process
itself when
+ it calls abort function of the C Standard Library, but it can
be sent
+ to the process from outside like any other signal.
config SIG_BUS
int "SIGBUS"