Greg Stark <st...@mit.edu> writes: > What I'm seeing is that every call to epoll_wait() raises EFAULT.
The man page for epoll_wait suggests that that implies a bad pointer value for the events array. You're showing epoll_ret_events = 0x9c0ad4 which is not obviously bad, but it's also only 4-byte aligned. I notice that CreateWaitEventSet() is being remarkably cavalier about alignment requirements; maybe it ought to make some effort to ensure that epoll_ret_events is maxaligned. Personally I'd make all the subsidiary arrays maxaligned, just to be sure. The existing coding is taking it on faith that the alignment requirements of each later component of the WaitEventSet are no worse than those of any earlier component; which even if true today is an assumption that will bite us on the ass someday. regards, tom lane -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers