@@ -901,9 +901,9 @@ def __repr__(self):
901901
902902class PollPoller (mitogen .core .Poller ):
903903 """
904- Poller based on the POSIX poll(2) interface. Not available on some versions
905- of OS X, otherwise it is the preferred poller for small FD counts, as there
906- is no setup/teardown/configuration system call overhead.
904+ Poller based on the POSIX :linux:man2:` poll` interface. Not available on
905+ some versions of OS X, otherwise it is the preferred poller for small FD
906+ counts, as there is no setup/teardown/configuration system call overhead.
907907 """
908908 SUPPORTED = hasattr (select , 'poll' )
909909 _repr = 'PollPoller()'
@@ -949,7 +949,7 @@ def _poll(self, timeout):
949949
950950class KqueuePoller (mitogen .core .Poller ):
951951 """
952- Poller based on the FreeBSD/Darwin kqueue(2) interface.
952+ Poller based on the FreeBSD/Darwin :freebsd:man2:` kqueue` interface.
953953 """
954954 SUPPORTED = hasattr (select , 'kqueue' )
955955 _repr = 'KqueuePoller()'
@@ -1027,7 +1027,7 @@ def _poll(self, timeout):
10271027
10281028class EpollPoller (mitogen .core .Poller ):
10291029 """
1030- Poller based on the Linux epoll(2) interface.
1030+ Poller based on the Linux :linux:man2:` epoll` interface.
10311031 """
10321032 SUPPORTED = hasattr (select , 'epoll' )
10331033 _repr = 'EpollPoller()'
0 commit comments