mirror of
https://github.com/apache/nuttx.git
synced 2026-06-01 07:45:16 +08:00
Run codespell -w with the latest dictonary again
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Abdelatif Guettouche
parent
55a7dfc9a7
commit
cde88cabcc
+1
-1
@@ -54,7 +54,7 @@
|
||||
* Name: dup
|
||||
*
|
||||
* Description:
|
||||
* Clone a file or socket descriptor to an arbitray descriptor number
|
||||
* Clone a file or socket descriptor to an arbitrary descriptor number
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@
|
||||
#include "inode/inode.h"
|
||||
|
||||
/* This logic in this applies only when both socket and file descriptors are
|
||||
* in that case, this function descriminates which type of dup2 is being
|
||||
* in that case, this function discriminates which type of dup2 is being
|
||||
* performed.
|
||||
*/
|
||||
|
||||
|
||||
+1
-1
@@ -103,7 +103,7 @@ int file_dup(FAR struct file *filep, int minfd)
|
||||
* Name: fs_dupfd OR dup
|
||||
*
|
||||
* Description:
|
||||
* Clone a file descriptor 'fd' to an arbitray descriptor number (any value
|
||||
* Clone a file descriptor 'fd' to an arbitrary descriptor number (any value
|
||||
* greater than or equal to 'minfd'). If socket descriptors are
|
||||
* implemented, then this is called by dup() for the case of file
|
||||
* descriptors. If socket descriptors are not implemented, then this
|
||||
|
||||
+1
-1
@@ -65,7 +65,7 @@
|
||||
*
|
||||
* Input Parameters:
|
||||
* filep - Instance for struct file for the opened file.
|
||||
* cmd - Indentifies the operation to be performed.
|
||||
* cmd - Identifies the operation to be performed.
|
||||
* ap - Variable argument following the command.
|
||||
*
|
||||
* Returned Value:
|
||||
|
||||
@@ -89,7 +89,7 @@ ssize_t readlink(FAR const char *path, FAR char *buf, size_t bufsize)
|
||||
|
||||
DEBUGASSERT(path != NULL && buf != NULL && bufsize > 0);
|
||||
|
||||
/* Find the inode that includes this path (without derefencing the final)
|
||||
/* Find the inode that includes this path (without dereferencing the final)
|
||||
* symbolic link node.
|
||||
*/
|
||||
|
||||
|
||||
+1
-1
@@ -204,7 +204,7 @@ ssize_t nx_write(int fd, FAR const void *buf, size_t nbytes)
|
||||
* buf is outside your accessible address space.
|
||||
* EFBIG
|
||||
* An attempt was made to write a file that exceeds the implementation
|
||||
* defined maximum file size or the process' file size limit, or
|
||||
* defined maximum file size or the process's file size limit, or
|
||||
* to write at a position past the maximum allowed offset.
|
||||
* EINTR
|
||||
* The call was interrupted by a signal before any data was written.
|
||||
|
||||
Reference in New Issue
Block a user