diff options
author | root <root> | 2011-01-10 13:53:49 +0000 |
---|---|---|
committer | root <root> | 2011-01-10 13:53:49 +0000 |
commit | ecf0bc4b02928296e0a843a7734e30e76209f030 (patch) | |
tree | 25d92a688ca8b48ea3cbff404150ed3b953d54d8 | |
parent | 5eb07282aa143d610a79caa2551e115d026c11c3 (diff) |
*** empty log message ***
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | ev_port.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -4,6 +4,7 @@ TODO: move some other examples to common idioms? combining watchers, thread usage, coroutine switch? TODO: frankenpoll +TODO: frankenports 4.03 - support files, /dev/zero etc. the same way as select in the epoll backend, by generating events on our own. @@ -12,6 +13,8 @@ TODO: frankenpoll - new (experimental) function: ev_feed_signal. - new (to become default) EVFLAG_NOSIGMASK flag. - new EVBACKEND_MASK symbol. + - ports backend: work around solaris bug 6874410 and many related ones + (EINTR, maybe more), with no performance loss. 4.01 Fri Nov 5 21:51:29 CET 2010 - automake fucked it up, apparently, --add-missing -f is not quite enough @@ -143,7 +143,7 @@ port_init (EV_P_ int flags) if ((backend_fd = port_create ()) < 0) return 0; - assert (("libev: PORT_SOURCE_FD must not be zero"), PORT_SOURCE_FD); + assert (("libev: PORT_SOURCE_FD must not be zero", PORT_SOURCE_FD)); fcntl (backend_fd, F_SETFD, FD_CLOEXEC); /* not sure if necessary, hopefully doesn't hurt */ |