sched/signal: Fix typo error in Kconfig(SIG_SEGA->SIG_SEGV)

Made by https://github.com/apache/nuttx/pull/8286

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2023-01-28 03:24:01 +08:00 committed by Petro Karashchenko
parent fc81bb8b36
commit 69da13c86d

View File

@ -1419,11 +1419,11 @@ config SIG_ILL
error in the executable file itself or an attempt to execute a data segment.
This signal may also be generated when the stack overflows.
config SIG_SEGA
int "SIGSEGA"
config SIG_SEGV
int "SIGSEGV"
default 18
---help---
The SIGSEGA is sent when an attempt is made to access memory that is
The SIGSEGV is sent when an attempt is made to access memory that is
not allocated to itself, or to write data to a memory address that does
not have write permission, or to illegally use the memory address signal.