summaryrefslogtreecommitdiff
path: root/nuttx/syscall/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-10 19:31:10 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-03-10 19:31:10 +0000
commitf6fffbd5b0a83bd161e8f6417a4d034f72268217 (patch)
tree740704dda0a94e8f63547b1f23da5d8f1e91f6f5 /nuttx/syscall/Kconfig
parent8e0c015c2120bf7d76a0c41d1160a745c3565a50 (diff)
downloadnuttx-f6fffbd5b0a83bd161e8f6417a4d034f72268217.tar.gz
nuttx-f6fffbd5b0a83bd161e8f6417a4d034f72268217.tar.bz2
nuttx-f6fffbd5b0a83bd161e8f6417a4d034f72268217.zip
AT91SAM3 now supports kernel-mode heap; SAM3U-EK knsh configuration converted to use kconfig-frontends tool
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5726 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/syscall/Kconfig')
-rw-r--r--nuttx/syscall/Kconfig15
1 files changed, 15 insertions, 0 deletions
diff --git a/nuttx/syscall/Kconfig b/nuttx/syscall/Kconfig
index ae2bf3130..6e047012a 100644
--- a/nuttx/syscall/Kconfig
+++ b/nuttx/syscall/Kconfig
@@ -2,3 +2,18 @@
# 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