summaryrefslogtreecommitdiff
path: root/include/fds.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fds.h')
-rw-r--r--include/fds.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/fds.h b/include/fds.h
new file mode 100644
index 0000000..f3728d7
--- /dev/null
+++ b/include/fds.h
@@ -0,0 +1,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