| 123456789101112131415 |
- #ifndef TOOLKIT_UNIX_H
- #define TOOLKIT_UNIX_H
- #include "config.h"
- #include <pthread.h>
- typedef pthread_t toolkit_thread_t;
- typedef pthread_mutex_t toolkit_mutex_t;
- int make_fd_cloexec(int fd, int set);
- int make_fd_nonblock(int fd, int set);
- int async_fd_create();
- void async_fd_close(int fd);
- #endif //TOOLKIT_UNIX_H
|