summaryrefslogtreecommitdiffstats
path: root/include/libtf/scheduler.h
diff options
context:
space:
mode:
authorTimo Teras <timo.teras@iki.fi>2010-03-10 19:04:26 +0200
committerTimo Teras <timo.teras@iki.fi>2010-03-10 19:04:26 +0200
commitdc34e87746f69994aad893b39ee4cd3dda6e2f7b (patch)
treec67548704b4f4e942cf8afbf00279bf09d624ac8 /include/libtf/scheduler.h
parent674f1495ab082c8f5a604cbb5a4dadc95b8c7ebb (diff)
downloadlibtf-dc34e87746f69994aad893b39ee4cd3dda6e2f7b.tar.bz2
libtf-dc34e87746f69994aad893b39ee4cd3dda6e2f7b.tar.xz
io: virtualize polling api
so we can in future have more polling frameworks than epoll.
Diffstat (limited to 'include/libtf/scheduler.h')
-rw-r--r--include/libtf/scheduler.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libtf/scheduler.h b/include/libtf/scheduler.h
index cc8db70..db5a823 100644
--- a/include/libtf/scheduler.h
+++ b/include/libtf/scheduler.h
@@ -18,6 +18,8 @@
#include <libtf/heap.h>
#include <libtf/fiber.h>
+struct tf_poll_hooks;
+
struct tf_scheduler {
struct tf_list_head scheduled_q;
struct tf_list_head running_q;
@@ -26,6 +28,7 @@ struct tf_scheduler {
void * main_fiber;
int num_fibers;
tf_mtime_t scheduler_time;
+ struct tf_poll_hooks * poller;
unsigned long poll_data[2];
};