1# Copyright (c) 2023 Meta
2#
3# SPDX-License-Identifier: Apache-2.0
4
5config POSIX_SIGNAL
6	bool "Support for POSIX signal APIs"
7	default y if POSIX_API
8	help
9	  Enable support for POSIX signal APIs.
10
11if POSIX_SIGNAL
12config POSIX_RTSIG_MAX
13	int "Maximum number of realtime signals"
14	default 31
15	help
16	  Define the maximum number of realtime signals (RTSIG_MAX).
17	  The range of realtime signals is [SIGRTMIN .. (SIGRTMIN+RTSIG_MAX)]
18
19config POSIX_SIGNAL_STRING_DESC
20	bool "Use full description for the strsignal API"
21	default y
22	help
23	  Use full description for the strsignal API.
24	  Will use 256 bytes of ROM.
25
26endif
27