When an event_del() is called on an evq, what happens to triggerings that were already 'in-flight' but haven't had their callbacks called yet.
For example: read event R is active on fd 42, uses 'callback_func()' as its callback new packet P1 comes in on fd 42 new packet P2 comes in on fd 42 libevent calls callback_func() for P1 callback_func() calls event_del() on event R What happens with P2? Is callback_func() still going to be called for it? Thanks! - scott