On Thu, Sep 22, 2011 at 01:58:49PM -0700, Jesse Gross wrote:
> On Thu, Sep 22, 2011 at 12:48 PM, Ben Pfaff wrote:
> > On Mon, Sep 19, 2011 at 03:00:07PM -0700, Jesse Gross wrote:
> >> Each time we run through the poll loop, we check all file descriptors
> >> that we were waiting on to see if there
On Thu, Sep 22, 2011 at 12:48 PM, Ben Pfaff wrote:
> On Mon, Sep 19, 2011 at 03:00:07PM -0700, Jesse Gross wrote:
>> Each time we run through the poll loop, we check all file descriptors
>> that we were waiting on to see if there is data available. However,
>> this requires a system call and poll
On Mon, Sep 19, 2011 at 03:00:07PM -0700, Jesse Gross wrote:
> Each time we run through the poll loop, we check all file descriptors
> that we were waiting on to see if there is data available. However,
> this requires a system call and poll already provides information on
> which FDs caused the w
Each time we run through the poll loop, we check all file descriptors
that we were waiting on to see if there is data available. However,
this requires a system call and poll already provides information on
which FDs caused the wakeup so it is inefficient as the number of
active FDs grows. This p