On Sun, Jul 18, 2004 at 02:41:07PM -0700, Paul Querna wrote: > #elif defined(HAVE_EPOLL) > ev.events = get_epoll_event(descriptor->reqevents); > + ev.data.fd = pollset->nelts;
Did you use data.fd for this rather than data.u32 for a particular reason? Looks like the latter is a more natural choice since ->nelts is also a uint32 (and not an fd)? joe