Async locking

This commit is contained in:
2023-01-02 17:53:44 +01:00
parent 4b4e7bd257
commit b79c9c710b
3 changed files with 44 additions and 1 deletions

@ -19,6 +19,10 @@ int async(sock *s, short events, int flags, void cb(void *), void *arg, void err
int async_fd(int fd, short events, int flags, void cb(void *), void *arg, void err_cb(void *), void *err_arg);
int async_init(void);
void async_free(void);
void async_thread(void);
void async_stop(void);