summaryrefslogtreecommitdiff
path: root/nuttx/libc/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-04 14:22:00 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-04 14:22:00 -0600
commitf8f30f68f11dd40f8db296f987e66eb278cbf382 (patch)
tree3dec542f96155671620a285bbdbf0f335cc1845b /nuttx/libc/Kconfig
parentd528b77848c9bf2ee2015ee8c4a73b958296cc44 (diff)
downloadpx4-nuttx-f8f30f68f11dd40f8db296f987e66eb278cbf382.tar.gz
px4-nuttx-f8f30f68f11dd40f8db296f987e66eb278cbf382.tar.bz2
px4-nuttx-f8f30f68f11dd40f8db296f987e66eb278cbf382.zip
Add skeleton file for eventual implementation of aio_read()
Diffstat (limited to 'nuttx/libc/Kconfig')
-rw-r--r--nuttx/libc/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/libc/Kconfig b/nuttx/libc/Kconfig
index e95cd245a..e425a48d5 100644
--- a/nuttx/libc/Kconfig
+++ b/nuttx/libc/Kconfig
@@ -79,6 +79,14 @@ config EOL_IS_EITHER_CRLF
endchoice
+config LIBC_AIO
+ bool "Asynchronous I/O support"
+ default n
+ depends on ((BUILD_PROTECTED || BUILD_KERNEL) && SCHED_USRWORK) || (BUILD_FLAT && SCHED_LPWORK)
+ ---help---
+ Enable support for aynchronous I/O. This selection enabled the
+ interface declared in include/aio.h.
+
config LIBC_EXECFUNCS
bool "Enable exec[l|v] / posix_spawn() Support"
default n