|
1 | | -int|access|const char *pathname, int mode|pathname, mode |
2 | | -int|select|int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout|nfds, readfds, writefds, exceptfds, timeout |
3 | | -unsigned int|sleep|unsigned int seconds|seconds |
4 | | -void *|malloc|size_t size|size |
5 | | -void *|realloc|void *ptr, size_t size|ptr, size |
| 1 | +int|access|const char* pathname, int mode|pathname, mode |
6 | 2 | void|free|void* ptr|ptr |
7 | | -int|pthread_mutex_lock|pthread_mutex_t *mutex|mutex |
8 | | -int|pthread_join|pthread_t thread, void **value_ptr|thread, value_ptr |
| 3 | +void*|malloc|size_t size|size |
| 4 | +int|poll|struct pollfd* fds, nfds_t nfds, int timeout|fds, nfds, timeout |
| 5 | +int|pthread_join|pthread_t thread, void** value_ptr|thread, value_ptr |
| 6 | +int|pthread_mutex_lock|pthread_mutex_t* mutex|mutex |
| 7 | +void*|realloc|void* ptr, size_t size|ptr, size |
| 8 | +int|select|int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout|nfds, readfds, writefds, exceptfds, timeout |
| 9 | +unsigned int|sleep|unsigned int seconds|seconds |
| 10 | +int|vprintf|const char* format, va_list ap|format, ap |
| 11 | +int|vfprintf|FILE* stream, const char* format, va_list ap|stream, format, ap |
9 | 12 | pid_t|wait|int* status|status |
10 | | -int|poll|struct pollfd *fds, nfds_t nfds, int timeout|fds, nfds, timeout |
11 | | -int|vprintf|const char *format, va_list ap|format, ap |
12 | | -int|vfprintf|FILE *stream, const char *format, va_list ap|stream, format, ap |
0 commit comments