diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index c85b844f2ba..fc51da59208 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -7629,10 +7629,11 @@ interface of the same name.
mmap() and eXecute In Place (XIP)mmap() and eXecute In Place (XIP)+#include <aio.h> + +int aio_cancel(int, FAR struct aiocb *aiocbp); +int aio_error(FAR const struct aiocb *aiocbp); +int aio_fsync(int, FAR struct aiocb *aiocbp); +int aio_read(FAR struct aiocb *aiocbp); +ssize_t aio_return(FAR struct aiocb *aiocbp); +int aio_suspend(FAR const struct aiocb *const list[], int nent, + FAR const struct timespec *timeout); +int aio_write(FAR struct aiocb *aiocbp); +int lio_listio(int mode, FAR struct aiocb *const list[], int nent, + FAR struct sigevent *sig); ++ +
#include <string.h> @@ -8000,9 +8017,9 @@ void *memmove(void *dest, const void *src, size_t count); # define bzero(s,n) (void)memset(s,0,n)-
pipepipeFunction Prototype:
@@ -8036,7 +8053,7 @@ int pipe(int fd[2]); -mkfifomkfifoFunction Prototype:
@@ -8083,8 +8100,8 @@ int mkfifo(FAR const char *pathname, mode_t mode); -mkfatfsmkfatfsFunction Prototype:
@@ -8161,7 +8178,7 @@ struct fat_format_s -mmap() and eXecute In Place (XIP)mmap() and eXecute In Place (XIP)NuttX operates in a flat open address space and is focused on MCUs that do support Memory Management Units (MMUs). Therefore, NuttX generally does not @@ -8290,7 +8307,7 @@ struct fat_format_s -
mmapmmapFunction Prototype:
@@ -9608,6 +9625,14 @@ notify a task when a message is available on a queue.