summaryrefslogtreecommitdiff
path: root/nuttx/include/aio.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-05 15:44:43 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-05 15:44:43 -0600
commit81cbb59cd0297bd06cc8ce8a9a79f5a38ce952bd (patch)
treea16d7905d89f8faaf5de65296fe904eca7f73aab /nuttx/include/aio.h
parentac0d1157e949312857d1abaf1b6515ad64c7d209 (diff)
downloadpx4-nuttx-81cbb59cd0297bd06cc8ce8a9a79f5a38ce952bd.tar.gz
px4-nuttx-81cbb59cd0297bd06cc8ce8a9a79f5a38ce952bd.tar.bz2
px4-nuttx-81cbb59cd0297bd06cc8ce8a9a79f5a38ce952bd.zip
Rename CONFIG_LIBC_AIO to CONFIG_FS_AIO since it is now an OS property
Diffstat (limited to 'nuttx/include/aio.h')
-rw-r--r--nuttx/include/aio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/include/aio.h b/nuttx/include/aio.h
index 202a24417..55e2ffa58 100644
--- a/nuttx/include/aio.h
+++ b/nuttx/include/aio.h
@@ -55,16 +55,16 @@
/* These interfaces are not available to kernel code */
#if (defined(CONFIG_BUILD_PROTECTED) || defined(CONFIG_BUILD_KERNEL)) && defined(__KERNEL__)
-# undef CONFIG_LIBC_AIO
+# undef CONFIG_FS_AIO
#endif
/* Work queue support is required. The low-priority work queue is required
* so that the asynchronous I/O does not interfere with high priority driver
* operations. If this pre-requisite is met, then asynchronous I/O support
- * can be enabled with CONFIG_LIBC_AIO
+ * can be enabled with CONFIG_FS_AIO
*/
-#ifdef CONFIG_LIBC_AIO
+#ifdef CONFIG_FS_AIO
#ifndef CONFIG_SCHED_WORKQUEUE
# error Asynchronous I/O requires CONFIG_SCHED_WORKQUEUE
@@ -171,5 +171,5 @@ int lio_listio(int mode, FAR struct aiocb *const list[], int nent,
}
#endif
-#endif /* CONFIG_LIBC_AIO */
+#endif /* CONFIG_FS_AIO */
#endif /* __INCLUDE_AIO_H */