>On 1/31/07, Nickolay V. Shmyrev <[EMAIL PROTECTED]> wrote: >> В Втр, 30/01/2007 в 17:21 -0800, Jerry Richards пишет: >> > When I run >> > "/util/sipo-options --contact=sip:[EMAIL PROTECTED] --from=sip:[EMAIL >> > PROTECTED] >> > 8.72.130 sip:[EMAIL PROTECTED]", I get the following runtime error: >> > >> > sup_port(0x804b5f8):epoll_create(): function not implemented > >As Nickolay told, that is because you have epoll_create() function in >your C library but it fails because your system lacks corresponding >kernel functionality. > >Hm, so it would be more careful to check for both sys/epoll.h and >epoll_create function and then set HAVE_EPOLL?
After some of looking into it I now think that it's just better to fallback to socketpair when epoll_create returned error. Really epoll_create can return error due to the lack of memory and so on, there is no reason to stop sofia_sip in that case. And it would be better to check for both epoll_create and epoll.h since any of them can be missing accidentally. ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Sofia-sip-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel
