summaryrefslogtreecommitdiff
path: root/nuttx/syscall/Kconfig
blob: 6e047012a995dfc982caaccf2afacffeb891f28b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if NUTTX_KERNEL

config SYS_RESERVED
	int "Number of reserved system calls"
	default 0
	---help---
		Kernel system calls may share the same software trapping mechanism
		as other functions used by architecture port.  Those software traps
		must be reserved for use exclusively by the architecture.  These
		value specifies the number of reserved software traps used by the
		architecture; number of the kernel system calls will begin with this
		number.

endif