diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html
index fbef436618..c85b844f2b 100644
--- a/Documentation/NuttxUserGuide.html
+++ b/Documentation/NuttxUserGuide.html
@@ -13,7 +13,7 @@
NuttX Operating SystemUser's Manual
by
Gregory Nutt
-
Last Updated: September 22, 2014
+ Last Updated: October 4, 2014
@@ -29,7 +29,8 @@
This manual provides general usage information for the NuttX RTOS from the
- perspective of the firmware developer.
+ perspective of the firmware developer.
+
@@ -7707,7 +7708,9 @@ interface of the same name.
#include <fcntl.h>
+ int creat(const char *path, mode_t mode);
int open(const char *path, int oflag, ...);
+ int fcntl(int fd, int cmd, ...);
@@ -7718,6 +7721,8 @@ interface of the same name.
int dup(int fd);
int dup2(int fd1, int fd2);
off_t lseek(int fd, off_t offset, int whence);
+ ssize_t pread(int fd, void *buf, size_t nbytes, off_t offset);
+ ssize_t pwrite(int fd, const void *buf, size_t nbytes, off_t offset);
ssize_t read(int fd, void *buf, size_t nbytes);
int unlink(const char *path);
ssize_t write(int fd, const void *buf, size_t nbytes);
@@ -9614,6 +9619,7 @@ notify a task when a message is available on a queue.
close
closedir
connect
+ creat
Data structures
Directory operations
dirent.h
@@ -9626,6 +9632,7 @@ notify a task when a message is available on a queue.
exit
FAT File System Support
fclose
+ fcntl
fcntl.h
fdopen
feof
@@ -9683,9 +9690,9 @@ notify a task when a message is available on a queue.
pause
pipe
poll
- poll.h
+ poll.h
posix_spawn
posix_spawn_file_actions_addclose
posix_spawn_file_actions_adddup2
@@ -9703,7 +9710,9 @@ notify a task when a message is available on a queue.
posix_spawnattr_setschedpolicy
posix_spawnattr_setsigmask
posix_spawnp
+ pread
printf
+ pwrite
Pthread Interfaces
pthread_attr_destroy
pthread_attr_getinheritsched
@@ -9766,10 +9775,10 @@ notify a task when a message is available on a queue.
readdir
readdir_r
recv
- recvfrom
- rename
|
+ recvfrom
+ rename
rmdir
rewinddir
ROM disk driver
|