summaryrefslogtreecommitdiff
path: root/ev.pod
diff options
context:
space:
mode:
authorroot <root>2007-11-23 08:36:35 +0000
committerroot <root>2007-11-23 08:36:35 +0000
commite71f3fb02d5da3553fc8e80eed84394b962b118f (patch)
treec22da1262f381c6565cbaf8161b2e164d7114f56 /ev.pod
parent17aa769e5683447df8357ac2b0493990b5d85e89 (diff)
*** empty log message ***
Diffstat (limited to 'ev.pod')
-rw-r--r--ev.pod19
1 files changed, 19 insertions, 0 deletions
diff --git a/ev.pod b/ev.pod
index 487ff56..70858ce 100644
--- a/ev.pod
+++ b/ev.pod
@@ -191,6 +191,10 @@ result in some caching, there is still a syscall per such incident
best to avoid that. Also, dup()ed file descriptors might not work very
well if you register events for both fds.
+Please note that epoll sometimes generates spurious notifications, so you
+need to use non-blocking I/O or other means to avoid blocking when no data
+(or space) is available.
+
=item C<EVBACKEND_KQUEUE> (value 8, most BSD clones)
Kqueue deserves special mention, as at the time of this writing, it
@@ -214,6 +218,10 @@ This is not implemented yet (and might never be).
This uses the Solaris 10 port mechanism. As with everything on Solaris,
it's really slow, but it still scales very well (O(active_fds)).
+Please note that solaris ports can result in a lot of spurious
+notifications, so you need to use non-blocking I/O or other means to avoid
+blocking when no data (or space) is available.
+
=item C<EVBACKEND_ALL>
Try all backends (even potentially broken ones that wouldn't be tried
@@ -530,6 +538,17 @@ Configures an C<ev_io> watcher. The fd is the file descriptor to rceeive
events for and events is either C<EV_READ>, C<EV_WRITE> or C<EV_READ |
EV_WRITE> to receive the given events.
+Please note that most of the more scalable backend mechanisms (for example
+epoll and solaris ports) can result in spurious readyness notifications
+for file descriptors, so you practically need to use non-blocking I/O (and
+treat callback invocation as hint only), or retest separately with a safe
+interface before doing I/O (XLib can do this), or force the use of either
+C<EVBACKEND_SELECT> or C<EVBACKEND_POLL>, which don't suffer from this
+problem. Also note that it is quite easy to have your callback invoked
+when the readyness condition is no longer valid even when employing
+typical ways of handling events, so its a good idea to use non-blocking
+I/O unconditionally.
+
=back
=head2 C<ev_timer> - relative and optionally recurring timeouts