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