mirror of
https://github.com/apache/nuttx.git
synced 2026-03-28 11:22:26 +08:00
14 KiB
14 KiB
| 1 | _exit | unistd.h | void | int | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| 2 | accept | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | struct sockaddr* | socklen_t* | |||
| 3 | atexit | stdlib.h | defined(CONFIG_SCHED_ATEXIT) | int | void (*)(void) | |||||
| 4 | bind | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | FAR const struct sockaddr* | socklen_t | |||
| 5 | clearenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | ||||||
| 6 | clock_getres | time.h | !defined(CONFIG_DISABLE_CLOCK) | int | clockid_t | struct timespec* | ||||
| 7 | clock_gettime | time.h | !defined(CONFIG_DISABLE_CLOCK) | int | clockid_t | struct timespec* | ||||
| 8 | clock_settime | time.h | !defined(CONFIG_DISABLE_CLOCK) | int | clockid_t | const struct timespec* | ||||
| 9 | clock_systimer | nuttx/clock.h | !defined(CONFIG_DISABLE_CLOCK) | uint32_t | ||||||
| 10 | close | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | int | int | |||||
| 11 | closedir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | FAR DIR* | |||||
| 12 | connect | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | FAR const struct sockaddr* | socklen_t | |||
| 13 | dup | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int | |||||
| 14 | dup2 | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int | int | ||||
| 15 | execl | unistd.h | !defined(CONFIG_BINFMT_DISABLE) && defined(CONFIG_LIBC_EXECFUNCS) | int | FAR const char *path | ... | ||||
| 16 | execv | unistd.h | !defined(CONFIG_BINFMT_DISABLE) && defined(CONFIG_LIBC_EXECFUNCS) | int | FAR const char *path | FAR char *const argv[] | ||||
| 17 | exit | stdlib.h | void | int | ||||||
| 18 | fcntl | fcntl.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int | int | ... | |||
| 19 | fs_fdopen | nuttx/fs/fs.h | CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_NFILE_STREAMS > 0 | FAR struct file_struct* | int | int | FAR struct tcb_s* | |||
| 20 | fsync | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | int | |||||
| 21 | get_errno | errno.h | int | |||||||
| 22 | getenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | FAR char* | FAR const char* | |||||
| 23 | getpid | unistd.h | pid_t | |||||||
| 24 | getsockopt | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | int | FAR void* | FAR socklen_t* | |
| 25 | gettimeofday | sys/time.h | !defined(CONFIG_DISABLE_CLOCK) | int | struct timeval* | FAR void* | ||||
| 26 | ioctl | sys/ioctl.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | int | int | int | unsigned long | |||
| 27 | kill | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | pid_t | int | ||||
| 28 | listen | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | ||||
| 29 | lseek | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | off_t | int | off_t | int | |||
| 30 | mkdir | sys/stat.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | mode_t | ||||
| 31 | mkfifo | sys/stat.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | FAR const char* | mode_t | ||||
| 32 | mmap | sys/mman.h | CONFIG_NFILE_DESCRIPTORS > 0 | FAR void* | FAR void* | size_t | int | int | int | off_t |
| 33 | mount | sys/mount.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | const char* | const char* | const char* | unsigned long | const void* | |
| 34 | mq_close | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | |||||
| 35 | mq_notify | mqueue.h | !defined(CONFIG_DISABLE_SIGNALS) && !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | const struct sigevent* | ||||
| 36 | mq_open | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | mqd_t | const char* | int | ... | |||
| 37 | mq_receive | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | ssize_t | mqd_t | void* | size_t | int* | ||
| 38 | mq_send | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | const void* | size_t | int | ||
| 39 | mq_timedreceive | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | ssize_t | mqd_t | void* | size_t | int* | const struct timespec* | |
| 40 | mq_timedsend | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | const char* | size_t | int | const struct timespec* | |
| 41 | mq_unlink | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | const char* | |||||
| 42 | on_exit | stdlib.h | defined(CONFIG_SCHED_ONEXIT) | int | CODE void (*)(int, FAR void *) | FAR void * | ||||
| 43 | open | fcntl.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | const char* | int | ... | |||
| 44 | opendir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | FAR DIR* | FAR const char* | |||||
| 45 | pipe | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int [2]|int* | |||||
| 46 | poll | poll.h | !defined(CONFIG_DISABLE_POLL) && (CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0) | int | FAR struct pollfd* | nfds_t | int | |||
| 47 | posix_spawnp | spawn.h | !defined(CONFIG_BINFMT_DISABLE) && defined(CONFIG_LIBC_EXECFUNCS) && defined(CONFIG_BINFMT_EXEPATH) | int | FAR pid_t * | FAR const char * | FAR const posix_spawn_file_actions_t * | FAR const posix_spawnattr_t * | FAR char *const [] | FAR char *const [] |
| 48 | posix_spawn | spawn.h | !defined(CONFIG_BINFMT_DISABLE) && defined(CONFIG_LIBC_EXECFUNCS) && !defined(CONFIG_BINFMT_EXEPATH) | int | FAR pid_t * | FAR const char * | FAR const posix_spawn_file_actions_t * | FAR const posix_spawnattr_t * | FAR char *const [] | FAR char *const [] |
| 49 | pthread_barrier_destroy | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_barrier_t* | |||||
| 50 | pthread_barrier_init | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_barrier_t* | FAR const pthread_barrierattr_t* | unsigned int | |||
| 51 | pthread_barrier_wait | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_barrier_t* | |||||
| 52 | pthread_cancel | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | |||||
| 53 | pthread_cond_broadcast | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | |||||
| 54 | pthread_cond_destroy | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | |||||
| 55 | pthread_cond_init | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | FAR pthread_condattr_t* | ||||
| 56 | pthread_cond_signal | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | |||||
| 57 | pthread_cond_timedwait | pthread.h | !defined(CONFIG_DISABLE_SIGNALS) && !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | FAR pthread_mutex_t* | FAR const struct timespec* | |||
| 58 | pthread_cond_wait | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | FAR pthread_mutex_t* | ||||
| 59 | pthread_create | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_t* | FAR pthread_attr_t* | pthread_startroutine_t | pthread_addr_t | ||
| 60 | pthread_detach | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | |||||
| 61 | pthread_exit | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | void | pthread_addr_t | |||||
| 62 | pthread_getschedparam | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | FAR int* | FAR struct sched_param* | |||
| 63 | pthread_getspecific | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | FAR void* | pthread_key_t | |||||
| 64 | pthread_join | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | FAR pthread_addr_t* | ||||
| 65 | pthread_key_create | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_key_t* | CODE void (*)(FAR void*) | ||||
| 66 | pthread_key_delete | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_key_t | |||||
| 67 | pthread_kill | pthread.h | !defined(CONFIG_DISABLE_SIGNALS) && !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | int | ||||
| 68 | pthread_mutex_destroy | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 69 | pthread_mutex_init | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | FAR pthread_mutexattr_t* | ||||
| 70 | pthread_mutex_lock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 71 | pthread_mutex_trylock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 72 | pthread_mutex_unlock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 73 | pthread_once | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_once_t* | CODE void (*)(void) | ||||
| 74 | pthread_setcancelstate | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | int | FAR int* | ||||
| 75 | pthread_setschedparam | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | int | FAR const struct sched_param* | |||
| 76 | pthread_setschedprio | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | int | ||||
| 77 | pthread_setspecific | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_key_t | FAR void* | ||||
| 78 | pthread_sigmask | pthread.h | !defined(CONFIG_DISABLE_SIGNALS) && !defined(CONFIG_DISABLE_PTHREAD) | int | int | FAR const sigset_t* | FAR sigset_t* | |||
| 79 | pthread_yield | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | void | ||||||
| 80 | putenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | FAR const char* | |||||
| 81 | read | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | ssize_t | int | FAR void* | size_t | |||
| 82 | readdir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | FAR struct dirent* | FAR DIR* | |||||
| 83 | recv | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | ssize_t | int | FAR void* | size_t | int | ||
| 84 | recvfrom | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | ssize_t | int | FAR void* | size_t | int | FAR struct sockaddr* | FAR socklen_t* |
| 85 | rename | stdio.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | FAR const char* | ||||
| 86 | rewinddir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | void | FAR DIR* | |||||
| 87 | rmdir | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | |||||
| 88 | sched_getparam | sched.h | int | pid_t | struct sched_param* | |||||
| 89 | sched_getscheduler | sched.h | int | pid_t | ||||||
| 90 | sched_getstreams | nuttx/sched.h | CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_NFILE_STREAMS > 0 | FAR struct streamlist* | ||||||
| 91 | sched_lock | sched.h | int | |||||||
| 92 | sched_lockcount | sched.h | int32_t | |||||||
| 93 | sched_rr_get_interval | sched.h | int | pid_t | struct timespec* | |||||
| 94 | sched_setparam | sched.h | int | pid_t | const struct sched_param* | |||||
| 95 | sched_setscheduler | sched.h | int | pid_t | int | const struct sched_param* | ||||
| 96 | sched_unlock | sched.h | int | |||||||
| 97 | sched_yield | sched.h | int | |||||||
| 98 | seekdir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | void | FAR DIR* | off_t | ||||
| 99 | select | sys/select.h | !defined(CONFIG_DISABLE_POLL) && (CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0) | int | int | FAR fd_set* | FAR fd_set* | FAR fd_set* | FAR struct timeval* | |
| 100 | sem_close | semaphore.h | int | FAR sem_t* | ||||||
| 101 | sem_destroy | semaphore.h | int | FAR sem_t* | ||||||
| 102 | sem_open | semaphore.h | FAR sem_t* | FAR const char* | int | ... | ||||
| 103 | sem_post | semaphore.h | int | FAR sem_t* | ||||||
| 104 | sem_trywait | semaphore.h | int | FAR sem_t* | ||||||
| 105 | sem_unlink | semaphore.h | int | FAR const char* | ||||||
| 106 | sem_wait | semaphore.h | int | FAR sem_t* | ||||||
| 107 | send | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | ssize_t | int | FAR const void* | size_t | int | ||
| 108 | sendfile | sys/sendfile.h | CONFIG_NFILE_DESCRIPTORS > 0 && defined(CONFIG_NET_SENDFILE) | ssize_t | int | int | FAR off_t* | size_t | ||
| 109 | sendto | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | ssize_t | int | FAR const void* | size_t | int | FAR const struct sockaddr* | socklen_t |
| 110 | set_errno | errno.h | void | int | ||||||
| 111 | setenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | const char* | const char* | int | |||
| 112 | setsockopt | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | int | FAR const void* | socklen_t | |
| 113 | sigaction | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | int | FAR const struct sigaction* | FAR struct sigaction* | |||
| 114 | sigpending | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR sigset_t* | |||||
| 115 | sigprocmask | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | int | FAR const sigset_t* | FAR sigset_t* | |||
| 116 | sigqueue | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | int | int | union sigval|FAR void *|sival_ptr | |||
| 117 | sigsuspend | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR const sigset_t* | |||||
| 118 | sigtimedwait | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR const sigset_t* | FAR struct siginfo* | FAR const struct timespec* | |||
| 119 | sigwaitinfo | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR const sigset_t* | FAR struct siginfo* | ||||
| 120 | sleep | unistd.h | !defined(CONFIG_DISABLE_SIGNALS) | unsigned int | unsigned int | |||||
| 121 | socket | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | int | |||
| 122 | stat | sys/stat.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | const char* | FAR struct stat* | ||||
| 123 | statfs | sys/statfs.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | const char* | struct statfs* | ||||
| 124 | task_create | sched.h | int | const char* | int | int | main_t | FAR char * const []|FAR char * const * | ||
| 125 | task_delete | sched.h | int | pid_t | ||||||
| 126 | task_restart | sched.h | int | pid_t | ||||||
| 127 | telldir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | off_t | FAR DIR* | |||||
| 128 | timer_create | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | clockid_t | FAR struct sigevent* | FAR timer_t* | |||
| 129 | timer_delete | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | |||||
| 130 | timer_getoverrun | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | |||||
| 131 | timer_gettime | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | FAR struct itimerspec* | ||||
| 132 | timer_settime | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | int | FAR const struct itimerspec* | FAR struct itimerspec* | ||
| 133 | umount | sys/mount.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | const char* | |||||
| 134 | unlink | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | |||||
| 135 | unsetenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | const char* | |||||
| 136 | up_assert | assert.h | void | FAR const uint8_t* | int | |||||
| 137 | usleep | unistd.h | !defined(CONFIG_DISABLE_SIGNALS) | int | useconds_t | |||||
| 138 | vfork | unistd.h | defined(CONFIG_ARCH_HAVE_VFORK) | pid_t | ||||||
| 139 | wait | sys/wait.h | defined(CONFIG_SCHED_WAITPID) && defined(CONFIG_SCHED_HAVE_PARENT) | pid_t | int* | |||||
| 140 | waitid | sys/wait.h | defined(CONFIG_SCHED_WAITPID) && defined(CONFIG_SCHED_HAVE_PARENT) | int | idtype_t | id_t | FAR siginfo_t * | int | ||
| 141 | waitpid | sys/wait.h | defined(CONFIG_SCHED_WAITPID) | pid_t | pid_t | int* | int | |||
| 142 | write | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | ssize_t | int | FAR const void* | size_t |