b991f30b82
OS functions in syscall.csv are ordered alphabetically. However, two recently added functions are not in the correct location. This PR simply corrects that ordering. The ordering of one entry was also corrected in libs/libc/libc.csv. Same issue. This change is only cosmetic. Verified only by CI
17 KiB
17 KiB
1 | _exit | unistd.h | noreturn | int | |
---|---|---|---|---|---|
2 | aio_read | aio.h | defined(CONFIG_FS_AIO) | int | FAR struct aiocb * |
3 | aio_write | aio.h | defined(CONFIG_FS_AIO) | int | FAR struct aiocb * |
4 | atexit | stdlib.h | defined(CONFIG_SCHED_ATEXIT) | int | void (*)(void) |
5 | close | unistd.h | int | int | |
6 | closedir | dirent.h | int | FAR DIR * | |
7 | dup | unistd.h | int | int | |
8 | exit | stdlib.h | noreturn | int | |
9 | fsync | unistd.h | !defined(CONFIG_DISABLE_MOUNTPOINT) | int | int |
10 | getenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | FAR char * | FAR const char * |
11 | if_nametoindex | net/if.h | defined(CONFIG_NETDEV_IFINDEX) | unsigned int | FAR const char * |
12 | modhandle | nuttx/module.h | defined(CONFIG_MODULE) | FAR void * | FAR const char * |
13 | mq_close | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | mqd_t |
14 | mq_unlink | mqueue.h | !defined(CONFIG_DISABLE_MQUEUE) | int | FAR const char * |
15 | nx_pthread_exit | nuttx/pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | noreturn | pthread_addr_t |
16 | nx_task_spawn | nuttx/spawn.h | defined(CONFIG_LIB_SYSCALL) && !defined(CONFIG_BUILD_KERNEL) | int | FAR const struct spawn_syscall_parms_s * |
17 | opendir | dirent.h | FAR DIR * | FAR const char * | |
18 | pthread_cancel | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t |
19 | pthread_cond_broadcast | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t * |
20 | pthread_cond_signal | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_cond_t * |
21 | pthread_detach | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | pthread_t |
22 | pthread_mutex_consistent | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) && !defined(CONFIG_PTHREAD_MUTEX_UNSAFE) | int | FAR pthread_mutex_t * |
23 | pthread_mutex_destroy | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t * |
24 | pthread_mutex_trylock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t * |
25 | pthread_mutex_unlock | pthread.h | !defined(CONFIG_DISABLE_PTHREAD) | int | FAR pthread_mutex_t * |
26 | putenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | FAR const char * |
27 | readdir | dirent.h | FAR struct dirent * | FAR DIR * | |
28 | rewinddir | dirent.h | void | FAR DIR * | |
29 | rmdir | unistd.h | !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char* |
30 | rmmod | nuttx/module.h | defined(CONFIG_MODULE) | int | FAR void * |
31 | sched_getscheduler | sched.h | int | pid_t | |
32 | sem_close | semaphore.h | defined(CONFIG_FS_NAMED_SEMAPHORES) | int | FAR sem_t * |
33 | sem_destroy | semaphore.h | int | FAR sem_t * | |
34 | sem_post | semaphore.h | int | FAR sem_t * | |
35 | sem_trywait | semaphore.h | int | FAR sem_t * | |
36 | sem_unlink | semaphore.h | defined(CONFIG_FS_NAMED_SEMAPHORES) | int | FAR const char * |
37 | sem_wait | semaphore.h | int | FAR sem_t * | |
38 | setgid | unistd.h | defined(CONFIG_SCHED_USER_IDENTITY) | int | gid_t |
39 | setuid | unistd.h | defined(CONFIG_SCHED_USER_IDENTITY) | int | uid_t |
40 | shmdt | sys/shm.h | defined(CONFIG_MM_SHM) | int | FAR const void * |
41 | sigpending | signal.h | int | FAR sigset_t * | |
42 | sigsuspend | signal.h | int | FAR const sigset_t * | |
43 | task_delete | sched.h | int | pid_t | |
44 | task_restart | sched.h | int | pid_t | |
45 | tcdrain | termios.h | defined(CONFIG_SERIAL_TERMIOS) | int | int |
46 | telldir | dirent.h | off_t | FAR DIR * | |
47 | timer_delete | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t |
48 | timer_getoverrun | time.h | !defined(CONFIG_DISABLE_POSIX_TIMERS) | int | timer_t |
49 | tls_free | nuttx/tls.h | CONFIG_TLS_NELEM > 0 | int | int |
50 | tls_get_dtor | nuttx/tls.h | CONFIG_TLS_NELEM > 0 | tls_dtor_t | int |
51 | unlink | unistd.h | !defined(CONFIG_DISABLE_MOUNTPOINT) | int | FAR const char * |
52 | unsetenv | stdlib.h | !defined(CONFIG_DISABLE_ENVIRON) | int | FAR const char * |
53 | wait | sys/wait.h | defined(CONFIG_SCHED_WAITPID) && defined(CONFIG_SCHED_HAVE_PARENT) | pid_t | FAR int * |