DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=41184>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=41184 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO ------- Additional Comments From [EMAIL PROTECTED] 2006-12-15 15:21 ------- (In reply to comment #5) > > Breakpoint 1, apr_pollset_create (pollset=0xa6f39ac4, size=1, p=0x8108b58, > flags=0) at poll/unix/epoll.c:92 > 92 poll/unix/epoll.c: No such file or directory. > in poll/unix/epoll.c > (gdb) next > 96 in poll/unix/epoll.c > (gdb) where > #0 apr_pollset_create (pollset=0xa6f39a3c, size=1, p=0x8108b58, flags=0) > at poll/unix/epoll.c:96 > #1 0x08097245 in listener_thread (thd=0x812d770, dummy=0x819cc80) > at worker.c:609 > #2 0xb75813e0 in dummy_worker (opaque=0xa6f39a3c) > at threadproc/unix/thread.c:138 > #3 0xb7515dac in start_thread () from /lib/tls/libpthread.so.0 > #4 0xb74b19ea in clone () from /lib/tls/libc.so.6 > (gdb) next > 97 in poll/unix/epoll.c > (gdb) next > 96 in poll/unix/epoll.c > (gdb) print fd > $1 = -1219447192 According to the epoll_create man page this should never happen. epoll_create should either return a positive int (success) or -1 (error) but never something like -1219447192. So it is possible that this is a libc or kernel bug. Are using a 32 or 64 bit Linux? > listener_thread (thd=0x812d770, dummy=0x819cc80) at worker.c:611 > 611 worker.c: No such file or directory. > in worker.c > (gdb) print pollset > $9 = (apr_pollset_t *) 0x0 Maybe httpd should print an error message in this case and exit instead of segfaulting. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
