Hey Guys,<br><br>     First off thanks for any help in advance!<br><br>    I&#39;m adding a single avp test i.e. $avp(s:some-avp-name) = &#39;foo!&#39;; to a development configuration running Kamailio revision: 5487 (1.4.3).  When I start kamailio I&#39;m getting the following error:<br>
<br>CRITICAL:core:init_io_wait: could not alloc epoll array<br><br>As soon as I delete this AVP addition and start her back up, she starts.<br><br><br>Code Snippet (io_wait.c)<br><br>606 #ifdef HAVE_EPOLL<br>607         case POLL_EPOLL_LT:<br>
608         case POLL_EPOLL_ET:<br>609             h-&gt;ep_array=local_malloc(sizeof(*(h-&gt;ep_array))*h-&gt;max_fd_no);<br>610             if (h-&gt;ep_array==0){<br>611                 LM_CRIT(&quot;could not alloc epoll array\n&quot;);<br>
612                 goto error;<br>613             }<br>614             memset((void*)h-&gt;ep_array, 0, sizeof(*(h-&gt;ep_array))*h-&gt;max_fd_no);<br>615             if (init_epoll(h)&lt;0){<br>616                 LM_CRIT(&quot;epoll init failed\n&quot;);<br>
617                 goto error;<br>618             }<br>619             break;<br>620 #endif<br><br>I do not know enough of Kamailio CORE but it looks like something to do with memory allocation / file descriptors?  I&#39;ve increased available memory to kamailio as well as open file limits / file descriptors etc -- to no avail, any help is much appreciated thanks guys!<br>