blob: f3728d72a630a2e7d34edc155f00508b39d4e7d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _FDS_H_
#define _FDS_H_
#include "linux_list.h"
struct fds {
int maxfd;
fd_set readfds;
struct list_head list;
};
struct fds_item {
struct list_head head;
int fd;
};
struct fds *create_fds(void);
void destroy_fds(struct fds *);
int register_fd(int fd, struct fds *fds);
int unregister_fd(int fd, struct fds *fds);
#endif
|