fs/vfs: Add file descriptor based events support

This commit is contained in:
spiriou
2020-07-28 13:08:48 +02:00
committed by patacongo
parent 070f4ed7e9
commit a4a9eb2f5a
10 changed files with 873 additions and 1 deletions
+1
View File
@@ -19,6 +19,7 @@
"connect","sys/socket.h","defined(CONFIG_NET)","int","int","FAR const struct sockaddr *","socklen_t"
"dup","unistd.h","","int","int"
"dup2","unistd.h","","int","int","int"
"eventfd","sys/eventfd.h","defined(CONFIG_EVENT_FD)","unsigned int","int"
"exec","nuttx/binfmt/binfmt.h","!defined(CONFIG_BINFMT_DISABLE) && !defined(CONFIG_BUILD_KERNEL)","int","FAR const char *","FAR char * const *","FAR const struct symtab_s *","int"
"execv","unistd.h","!defined(CONFIG_BINFMT_DISABLE) && defined(CONFIG_LIBC_EXECFUNCS)","int","FAR const char *","FAR char * const []|FAR char * const *"
"exit","stdlib.h","","void","int"
1 _exit unistd.h void int
19 connect sys/socket.h defined(CONFIG_NET) int int
20 dup unistd.h int int
21 dup2 unistd.h int int
22 eventfd sys/eventfd.h defined(CONFIG_EVENT_FD) unsigned int int
23 exec nuttx/binfmt/binfmt.h !defined(CONFIG_BINFMT_DISABLE) && !defined(CONFIG_BUILD_KERNEL) int FAR const char *
24 execv unistd.h !defined(CONFIG_BINFMT_DISABLE) && defined(CONFIG_LIBC_EXECFUNCS) int FAR const char *
25 exit stdlib.h void int