mirror of
https://github.com/apache/nuttx.git
synced 2026-03-28 02:59:15 +08:00
16 KiB
16 KiB
| 1 | _exit | unistd.h | void | int | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| 2 | aio_cancel | aio.h | defined(CONFIG_FS_AIO) | int | int | FAR struct aiocb * | ||||
| 3 | aio_fsync | aio.h | defined(CONFIG_FS_AIO) | int | int | FAR struct aiocb * | ||||
| 4 | aio_read | aio.h | defined(CONFIG_FS_AIO) | int | FAR struct aiocb * | |||||
| 5 | aio_write | aio.h | defined(CONFIG_FS_AIO) | int | FAR struct aiocb * | |||||
| 6 | accept | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | struct sockaddr* | socklen_t* | |||
| 7 | atexit | stdlib.h | defined(CONFIG_SCHED_ATEXIT) | int | void (*)(void) | |||||
| 8 | bind | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | FAR const struct sockaddr* | socklen_t | |||
| 9 | boardctl | sys/boardctl.h | defined(CONFIG_LIB_BOARDCTL) | int | unsigned int | uintptr_t | ||||
| 10 | clearenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | ||||||
| 11 | clock_getres | time.h | int | clockid_t | struct timespec* | |||||
| 12 | clock_gettime | time.h | int | clockid_t | struct timespec* | |||||
| 13 | clock_settime | time.h | int | clockid_t | const struct timespec* | |||||
| 14 | clock_systimer | nuttx/clock.h | !defined(__HAVE_KERNEL_GLOBALS) | systime_t | ||||||
| 15 | close | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | int | int | |||||
| 16 | closedir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | FAR DIR* | |||||
| 17 | connect | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | FAR const struct sockaddr* | socklen_t | |||
| 18 | dup | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int | |||||
| 19 | dup2 | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int | int | ||||
| 20 | execv | unistd.h | !defined(CONFIG_BINFMT_DISABLE) && defined(CONFIG_LIBC_EXECFUNCS) | int | FAR const char * | FAR char *const []|FAR char *const * | ||||
| 21 | exit | stdlib.h | void | int | ||||||
| 22 | fcntl | fcntl.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int | int | ... | |||
| 23 | fs_fdopen | nuttx/fs/fs.h | CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_NFILE_STREAMS > 0 | FAR struct file_struct* | int | int | FAR struct tcb_s* | |||
| 24 | fs_ioctl | nuttx/fs/fs.h | defined(CONFIG_LIBC_IOCTL_VARIADIC) && (CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0) | int | int | int | unsigned long | |||
| 25 | fsync | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | int | |||||
| 26 | get_errno | errno.h | !defined(__DIRECT_ERRNO_ACCESS) | int | ||||||
| 27 | get_errno_ptr | errno.h | defined(__DIRECT_ERRNO_ACCESS) | FAR int* | ||||||
| 28 | getenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | FAR char* | FAR const char* | |||||
| 29 | getpid | unistd.h | pid_t | |||||||
| 30 | getsockopt | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | int | FAR void* | FAR socklen_t* | |
| 31 | insmod | nuttx/module.h | defined(CONFIG_MODULE) | int | FAR const char * | FAR const char * | ||||
| 32 | ioctl | sys/ioctl.h | !defined(CONFIG_LIBC_IOCTL_VARIADIC) && (CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0) | int | int | int | unsigned long | |||
| 33 | kill | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | pid_t | int | ||||
| 34 | listen | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | ||||
| 35 | lseek | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | off_t | int | off_t | int | |||
| 36 | mkdir | sys/stat.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | mode_t | ||||
| 37 | mkfifo | sys/stat.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | FAR const char* | mode_t | ||||
| 38 | mmap | sys/mman.h | CONFIG_NFILE_DESCRIPTORS > 0 | FAR void* | FAR void* | size_t | int | int | int | off_t |
| 39 | mount | sys/mount.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) && defined(CONFIG_FS_READABLE) | int | const char* | const char* | const char* | unsigned long | const void* | |
| 40 | mq_close | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | |||||
| 41 | mq_getattr | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | struct mq_attr * | ||||
| 42 | mq_notify | mqueue.h | !defined(CONFIG_DISABLE_SIGNALS) && !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | const struct sigevent* | ||||
| 43 | mq_open | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | mqd_t | const char* | int | ... | |||
| 44 | mq_receive | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | ssize_t | mqd_t | char* | size_t | int* | ||
| 45 | mq_send | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | const char* | size_t | int | ||
| 46 | mq_setattr | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | const struct mq_attr * | struct mq_attr * | |||
| 47 | mq_timedreceive | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | ssize_t | mqd_t | char* | size_t | int* | const struct timespec* | |
| 48 | mq_timedsend | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t | const char* | size_t | int | const struct timespec* | |
| 49 | mq_unlink | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | const char* | |||||
| 50 | on_exit | stdlib.h | defined(CONFIG_SCHED_ONEXIT) | int | CODE void (*)(int, FAR void *) | FAR void * | ||||
| 51 | nanosleep | time.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR const struct timespec * | FAR struct timespec* | ||||
| 52 | open | fcntl.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | const char* | int | ... | |||
| 53 | opendir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | FAR DIR* | FAR const char* | |||||
| 54 | pgalloc | nuttx/arch.h | defined(CONFIG_BUILD_KERNEL) | uintptr_t | uintptr_t | unsigned int | ||||
| 55 | pipe | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | int [2]|int* | |||||
| 56 | poll | poll.h | !defined(CONFIG_DISABLE_POLL) && (CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0) | int | FAR struct pollfd* | nfds_t | int | |||
| 57 | prctl | sys/prctl.h | CONFIG_TASK_NAME_SIZE > 0 | int | int | ... | ||||
| 58 | pread | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | ssize_t | int | FAR void* | size_t | off_t | ||
| 59 | pwrite | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | ssize_t | int | FAR const void* | size_t | off_t | ||
| 60 | 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 * | FAR char *const [] |
| 61 | 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 * | FAR char *const []|FAR char *const * |
| 62 | pthread_barrier_destroy | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_barrier_t* | |||||
| 63 | pthread_barrier_init | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_barrier_t* | FAR const pthread_barrierattr_t* | unsigned int | |||
| 64 | pthread_barrier_wait | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_barrier_t* | |||||
| 65 | pthread_cancel | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | |||||
| 66 | pthread_cond_broadcast | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | |||||
| 67 | pthread_cond_destroy | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | |||||
| 68 | pthread_cond_init | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | FAR const pthread_condattr_t* | ||||
| 69 | pthread_cond_signal | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | |||||
| 70 | 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* | |||
| 71 | pthread_cond_wait | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t* | FAR pthread_mutex_t* | ||||
| 72 | pthread_create | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_t* | FAR const pthread_attr_t* | pthread_startroutine_t | pthread_addr_t | ||
| 73 | pthread_detach | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | |||||
| 74 | pthread_exit | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | void | pthread_addr_t | |||||
| 75 | pthread_getaffinity_np | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) && defined(CONFIG_SMP) | int | pthread_t | size_t | FAR cpu_set_t* | |||
| 76 | pthread_getschedparam | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | FAR int* | FAR struct sched_param* | |||
| 77 | pthread_getspecific | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | FAR void* | pthread_key_t | |||||
| 78 | pthread_join | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | FAR pthread_addr_t* | ||||
| 79 | pthread_key_create | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_key_t* | CODE void (*)(FAR void*) | ||||
| 80 | pthread_key_delete | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_key_t | |||||
| 81 | pthread_kill | pthread.h | !defined(CONFIG_DISABLE_SIGNALS) && !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | int | ||||
| 82 | pthread_mutex_destroy | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 83 | pthread_mutex_init | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | FAR const pthread_mutexattr_t* | ||||
| 84 | pthread_mutex_lock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 85 | pthread_mutex_trylock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 86 | pthread_mutex_unlock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t* | |||||
| 87 | pthread_once | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_once_t* | CODE void (*)(void) | ||||
| 88 | pthread_setaffinity_np | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) && defined(CONFIG_SMP) | int | pthread_t | size_t | FAR const cpu_set_t* | |||
| 89 | pthread_setcancelstate | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | int | FAR int* | ||||
| 90 | pthread_setschedparam | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | int | FAR const struct sched_param* | |||
| 91 | pthread_setschedprio | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t | int | ||||
| 92 | pthread_setspecific | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_key_t | FAR const void* | ||||
| 93 | pthread_sigmask | pthread.h | !defined(CONFIG_DISABLE_SIGNALS) && !defined(CONFIG_DISABLE_PTHREAD) | int | int | FAR const sigset_t* | FAR sigset_t* | |||
| 94 | pthread_yield | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | void | ||||||
| 95 | putenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | FAR const char* | |||||
| 96 | read | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | ssize_t | int | FAR void* | size_t | |||
| 97 | readdir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | FAR struct dirent* | FAR DIR* | |||||
| 98 | recv | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | ssize_t | int | FAR void* | size_t | int | ||
| 99 | 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* |
| 100 | rename | stdio.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | FAR const char* | ||||
| 101 | rewinddir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | void | FAR DIR* | |||||
| 102 | rmdir | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | |||||
| 103 | rmmod | nuttx/module.h | defined(CONFIG_MODULE) | int | FAR const char * | |||||
| 104 | sched_getparam | sched.h | int | pid_t | struct sched_param* | |||||
| 105 | sched_getscheduler | sched.h | int | pid_t | ||||||
| 106 | sched_getstreams | nuttx/sched.h | CONFIG_NFILE_DESCRIPTORS > 0 && CONFIG_NFILE_STREAMS > 0 | FAR struct streamlist* | ||||||
| 107 | sched_lock | sched.h | int | |||||||
| 108 | sched_lockcount | sched.h | int32_t | |||||||
| 109 | sched_rr_get_interval | sched.h | int | pid_t | struct timespec* | |||||
| 110 | sched_setparam | sched.h | int | pid_t | const struct sched_param* | |||||
| 111 | sched_setscheduler | sched.h | int | pid_t | int | const struct sched_param* | ||||
| 112 | sched_unlock | sched.h | int | |||||||
| 113 | sched_yield | sched.h | int | |||||||
| 114 | seekdir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | void | FAR DIR* | off_t | ||||
| 115 | 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* | |
| 116 | sem_close | semaphore.h | defined(CONFIG_FS_NAMED_SEMAPHORES) | int | FAR sem_t* | |||||
| 117 | sem_destroy | semaphore.h | int | FAR sem_t* | ||||||
| 118 | sem_open | semaphore.h | defined(CONFIG_FS_NAMED_SEMAPHORES) | FAR sem_t* | FAR const char* | int | ... | |||
| 119 | sem_post | semaphore.h | int | FAR sem_t* | ||||||
| 120 | sem_timedwait | semaphore.h | int | FAR sem_t* | FAR const struct timespec * | |||||
| 121 | sem_trywait | semaphore.h | int | FAR sem_t* | ||||||
| 122 | sem_unlink | semaphore.h | defined(CONFIG_FS_NAMED_SEMAPHORES) | int | FAR const char* | |||||
| 123 | sem_wait | semaphore.h | int | FAR sem_t* | ||||||
| 124 | send | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | ssize_t | int | FAR const void* | size_t | int | ||
| 125 | sendfile | sys/sendfile.h | CONFIG_NFILE_DESCRIPTORS > 0 && defined(CONFIG_NET_SENDFILE) | ssize_t | int | int | FAR off_t* | size_t | ||
| 126 | 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 |
| 127 | set_errno | errno.h | !defined(__DIRECT_ERRNO_ACCESS) | void | int | |||||
| 128 | setenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | FAR const char* | FAR const char* | int | |||
| 129 | sethostname | unistd.h | defined(CONFIG_LIBC_NETDB) | int | FAR const char* | size_t | ||||
| 130 | setsockopt | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | int | FAR const void* | socklen_t | |
| 131 | shmat | sys/shm.h | defined(CONFIG_MM_SHM) | FAR void * | int | FAR const void * | int | |||
| 132 | shmctl | sys/shm.h | defined(CONFIG_MM_SHM) | int | int | int | FAR struct shmid_ds * | |||
| 133 | shmdt | sys/shm.h | defined(CONFIG_MM_SHM) | int | FAR const void * | |||||
| 134 | shmget | sys/shm.h | defined(CONFIG_MM_SHM) | int | key_t | size_t | int | |||
| 135 | sigaction | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | int | FAR const struct sigaction* | FAR struct sigaction* | |||
| 136 | sigpending | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR sigset_t* | |||||
| 137 | sigprocmask | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | int | FAR const sigset_t* | FAR sigset_t* | |||
| 138 | sigqueue | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | int | int | union sigval|FAR void *|sival_ptr | |||
| 139 | sigsuspend | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR const sigset_t* | |||||
| 140 | sigtimedwait | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR const sigset_t* | FAR struct siginfo* | FAR const struct timespec* | |||
| 141 | sigwaitinfo | signal.h | !defined(CONFIG_DISABLE_SIGNALS) | int | FAR const sigset_t* | FAR struct siginfo* | ||||
| 142 | socket | sys/socket.h | CONFIG_NSOCKET_DESCRIPTORS > 0 && defined(CONFIG_NET) | int | int | int | int | |||
| 143 | stat | sys/stat.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | const char* | FAR struct stat* | ||||
| 144 | statfs | sys/statfs.h | CONFIG_NFILE_DESCRIPTORS > 0 | int | FAR const char* | FAR struct statfs* | ||||
| 145 | task_create | sched.h | !defined(CONFIG_BUILD_KERNEL) | int | FAR const char* | int | int | main_t | FAR char * const []|FAR char * const * | |
| 146 | task_delete | sched.h | int | pid_t | ||||||
| 147 | task_restart | sched.h | int | pid_t | ||||||
| 148 | telldir | dirent.h | CONFIG_NFILE_DESCRIPTORS > 0 | off_t | FAR DIR* | |||||
| 149 | timer_create | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | clockid_t | FAR struct sigevent* | FAR timer_t* | |||
| 150 | timer_delete | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | |||||
| 151 | timer_getoverrun | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | |||||
| 152 | timer_gettime | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | FAR struct itimerspec* | ||||
| 153 | timer_settime | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t | int | FAR const struct itimerspec* | FAR struct itimerspec* | ||
| 154 | umount2 | sys/mount.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | unsigned int | ||||
| 155 | uname | sys/utsname.h | int | FAR struct utsname* | ||||||
| 156 | unlink | unistd.h | CONFIG_NFILE_DESCRIPTORS > 0 && !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* | |||||
| 157 | unsetenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | const char* | |||||
| 158 | up_assert | assert.h | void | FAR const uint8_t* | int | |||||
| 159 | vfork | unistd.h | defined(CONFIG_ARCH_HAVE_VFORK) | pid_t | ||||||
| 160 | wait | sys/wait.h | defined(CONFIG_SCHED_WAITPID) && defined(CONFIG_SCHED_HAVE_PARENT) | pid_t | int* | |||||
| 161 | waitid | sys/wait.h | defined(CONFIG_SCHED_WAITPID) && defined(CONFIG_SCHED_HAVE_PARENT) | int | idtype_t | id_t | FAR siginfo_t * | int | ||
| 162 | waitpid | sys/wait.h | defined(CONFIG_SCHED_WAITPID) | pid_t | pid_t | int* | int | |||
| 163 | write | unistd.h | CONFIG_NSOCKET_DESCRIPTORS > 0 || CONFIG_NFILE_DESCRIPTORS > 0 | ssize_t | int | FAR const void* | size_t |