forked from raboof/jack_interposer
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
order functions by name, cleanup
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| int|access|const char *pathname, int mode|pathname, mode | ||
| int|select|int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout|nfds, readfds, writefds, exceptfds, timeout | ||
| unsigned int|sleep|unsigned int seconds|seconds | ||
| void *|malloc|size_t size|size | ||
| void *|realloc|void *ptr, size_t size|ptr, size | ||
| int|access|const char* pathname, int mode|pathname, mode | ||
| void|free|void* ptr|ptr | ||
| int|pthread_mutex_lock|pthread_mutex_t *mutex|mutex | ||
| int|pthread_join|pthread_t thread, void **value_ptr|thread, value_ptr | ||
| void*|malloc|size_t size|size | ||
| int|poll|struct pollfd* fds, nfds_t nfds, int timeout|fds, nfds, timeout | ||
| int|pthread_join|pthread_t thread, void** value_ptr|thread, value_ptr | ||
| int|pthread_mutex_lock|pthread_mutex_t* mutex|mutex | ||
| void*|realloc|void* ptr, size_t size|ptr, size | ||
| int|select|int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout|nfds, readfds, writefds, exceptfds, timeout | ||
| unsigned int|sleep|unsigned int seconds|seconds | ||
| int|vprintf|const char* format, va_list ap|format, ap | ||
| int|vfprintf|FILE* stream, const char* format, va_list ap|stream, format, ap | ||
| pid_t|wait|int* status|status | ||
| int|poll|struct pollfd *fds, nfds_t nfds, int timeout|fds, nfds, timeout | ||
| int|vprintf|const char *format, va_list ap|format, ap | ||
| int|vfprintf|FILE *stream, const char *format, va_list ap|stream, format, ap |