cmatthew / Lind-misc

Misc files for the Lind project
3 stars 3 forks source link

New Syscalls epoll_* #35

Closed cmatthew closed 12 years ago

cmatthew commented 12 years ago

TOR uses the epoll set of syscalls.

man epoll

We will need to implement the epoll_wait, epoll_ctl, and epoll_create syscalls.

cmatthew commented 12 years ago

Actually, we might not have to do this one. TOR is using libevent - so as long as we can get some support going for that we wont need epoll. Libevent should be able to be forced to use Poll and select instead of epoll.

cmatthew commented 12 years ago

I have figured out how to bypass epoll, to use regualar poll in libevent, so this is not an issue for TOR.